Menu
The table tag is used to designate an HTML table.
A <table> contains one or more <tr>, <th>, and <td> elements.
<table>
<tr>
<th>This is the heading for the first column</th>
<th>This is the heading for the second column</th>
</tr>
<tr>
<td>First column contents</td>
<td>Second column contents</td>
</tr>
</table>Have a code example of <table>? Submit a codepen.io demo and we'll showcase it here ↴