Defines a table data cell inside a table. This tag must be inside a table row(tr) element.
<td attributes> ... </td>
<table>
<tr>
<th>Header one</th>
<th>Another header</th>
</tr>
<tr>
<td>Data cell</td>
<td>Another data cell</td>
</tr>
</table>