<table>

<tr>

<th>Firstname</th>

<th>Lastname</th>

<th>Date of Birth</th>

</tr>

<tr>

</tr>

</table>

Within this row, we are going to be adding our data. Because we are now adding a data cell instead of a heading, we are going to be using the <td> tag. Similarly to the table heading tags, our information goes between the opening and closing tags. We can add any content we like inside this cell, including another table. Remember, we must ensure that we have an equal number of cells to that of our header row. So let’s add three again.