Home

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>
table caption
heading column 1 heading column 2
row 1, column 1 row 1, column 2
row 2, column 1 row 2, column 2