This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.
The <tbody> tag defines the body content of a table.
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dominick</td>
<td>25</td>
</tr>
<tr>
<td>Jason</td>
<td>23</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">2 People Total.</td>
</tr>
</tfoot>
</table>