0Pricing
HTML Academy · Lesson

table tr td and th

Create basic tables with rows, data cells, and header cells.

HTML Tables

Tables display data in rows and columns. Use them for tabular data — not for page layout.

<table>
  <tr>
    <th>Name</th>
    <th>Score</th>
  </tr>
  <tr>
    <td>Alice</td>
    <td>95</td>
  </tr>
  <tr>
    <td>Bob</td>
    <td>87</td>
  </tr>
</table>

The table, tr, td Elements

Core table elements:

  • <table> — the table container
  • <tr> — a table row
  • <td> — a table data cell
  • <th> — a table header cell (bold, centered by default)

All lessons in this course

  1. table tr td and th
  2. thead tbody tfoot Structure
  3. colspan and rowspan for Spanning
  4. Table Accessibility scope summary caption
← Back to HTML Academy