HTML <thead> element


<thead> tag defines the head section of table.

123
HTMLPHPJavascript
HTML Form Tag PHP Form Validation JS Form Submit
web pagehandlingdynamic

HTML Code of above table:
<table border=2>
<thead><tr><th>1</th><th>2</th><th>3</th></tr></thead>
<tbody>
<tr><th>HTML</th><th>PHP</th><th>Javascript</th></tr>
<tr><td><a href="form.php">HTML Form Tag</a></td>
<td><a href="../php/formvalidation.php">PHP Form Validation</a></td>
<td><a href="../js/submitform.php">JS Form Submit</a></td>
</tr>
</tbody>
<tfoot><tr><td>web page</td><td>handling</td><td>dynamic</td></tr></tfoot>
</table>