w3c tables https://www.w3.org/TR/CSS2/tables.html
Table complete guide https://css-tricks.com/complete-guide-table-element/
<table>
<thead>Header</thead>
<tbody> <!-- below can be repeated in each subsection -->
<tr> <!-- table row -->
<td> <!-- table cell --></td>
<td> <!-- table cell --></td>
</tr>
</tbody>
<tfoot>Footer</tfoot>
</table>