HTML <tbody> Tag

<table border = "1">
<caption>Caption</caption>
<thead>
<tr><th colspan="2">Table Header (thead)</th></tr>
</thead>
<tfoot>
<tr><th colspan="2">Table Footer (tfoot)</th></tr>
</tfoot>
<tbody>
<tr>
<td>Cell 1 - part of tbody</td>
<td>Cell 2 - part of tbody</td>
</tr>
<tr>
<td>Cell 3 - part of tbody</td>
<td>Cell 4 - part of tbody</td>
</tr>
</tbody>
</table>

The above example demonstrates usage of the <tbody> element.

The <tbody> element represents the body of data for a table.

See the <table> element for more information.