HTML 101
Tables

What Are Tables For?

Anatomy of a table

<table>
<caption>Members of Luis's One-Man-Band</caption>

<tr>
<th scope="col">Name</th>
<th scope="col">Instrument</th>
</tr>

<tr>
<th scope="row">Luis</th>
<td>All of them</td>
</tr>

</table>