The <thead> tag represents the header section of the HTML table
Example of Code
<table border="solid">
<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>
</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
