HTML <caption> element
<caption> tag defines the caption of a table.
| HTML | PHP | Javascript |
|---|---|---|
| HTML Form Tag | PHP Form Validation | JS Form Submit |
HTML Code of above table:
<table border=1> <caption><b>An simple table example</b></caption> <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></table>