1
HTML/CSSIntermediate#html#tables
Use <table> with <thead> for column headers, <tbody> for data rows, and <tfoot> for summary rows. <th> defines header cells (bold, centered by default), <td> defines data cells, and <tr> defines rows.
<table>
<thead><tr><th>Item</th><th>Price</th></tr></thead>
<tbody>
<tr><td>Book</td><td>$10</td></tr>
</tbody>
<tfoot><tr><td>Total</td><td>$10</td></tr></tfoot>
</table>