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 <table> tag is used to create a table.
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Dominick</td>
<td>25</td>
</tr>
<tr>
<td>Jason</td>
<td>23</td>
</tr>
</table>