Table Caption

Example adding a caption to a table.

Preview

Code

<table border="1">
<caption>Student List</caption>
<tr>
<th>Name</th>
<th>Score</th>
</tr>
<tr>
<td>Mary</td>
<td>90</td>
</tr>
</table>

More HTML Tables Examples (11)