Defines a table header cell inside a table. Text in this tag is rendered in bold by default. This tag must be inside a table row(tr) element.
<th attributes> ... </th>
<table>
<tr>
<th>Header one</th>
<th>Another header</th>
</tr>
<tr>
<td>Data cell</td>
<td>Another data cell</td>
</tr>
</table>