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)