HTML <tfoot> 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 <tfoot>
element.
The <tfoot>
element represents a table footer. The table header generally consists of column summaries for each column in the table.
See the <table> element for more information.