The <tfoot> represents the table's footer section. It specify the group a set of rows summarizing the columns of the table.
Example of Code
<table>
<thead>
<tr><th>Table Header</th><th>Table Header</th></tr>
</thead>
<tfoot>
<tr><th>Table Footer</th><th>Table Footer</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>
<tr>
<td>Cell 5 - part of tbody</td>
<td>Cell 6 - part of tbody</td>
</tr>
</tbody>
</table>
Output
Table Header Table Header Table Footer Table Footer Cell 1 - part of tbody Cell 2 - part of tbody Cell 3 - part of tbody Cell 4 - part of tbody Cell 5 - part of tbody Cell 6 - part of tbody
