This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.
The <th> tag is used to define table heading columns.
<table>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
</table>