HTML - thead tag
Table caption
<table border="1"> <caption>table caption</caption> <thead> <tr> <th>heading column 1</th> <th>heading column 2</th> </tr> </thead> <tr> <td>row 1, column 1</td> <td>row 1, column 2</td> </tr> <tr> <td>row 2, column 1</td> <td>row 2, column 2</td> </tr> </table> | ||||||
This is how it will appear in a browser | ||||||
| ||||||
View above example output in a new browser window |