Back to HTML

HTML Tutorial

Tables

Display structured tabular data with rows and columns.

Tables are used for data that belongs in rows and columns.

Use table headings to make data easier to understand and more accessible.

code
<table>
  <tr>
    <th>Technology</th>
    <th>Purpose</th>
  </tr>
  <tr>
    <td>HTML</td>
    <td>Structure</td>
  </tr>
</table>