Creates a row in a table. This tag must be within the table element.
<tr attributes> ... </tr>
<table>
<tr>
<th>Header one</th>
<th>Another header</th>
</tr>
<tr>
<td>Data cell</td>
<td>Another data cell</td>
</tr>
</table>