Produces a table, it is used together with the elements table row(tr) table header(th) and table cell(td) to create rows and columns. Other elements used with this tag are table head(thead), table body(tbody) and table footer(tfoot). Block-level element
<table attributes> ... </table>
<table>
<tr>
<th>Header one</th>
<th>Another header</th>
</tr>
<tr>
<td>Data cell</td>
<td>Another data cell</td>
</tr>
</table>