The <table> Tags
<table>
<tr>
<th></th>
<th scope="col">Column A</th>
</tr>
<tr>
<th scope="row">Row 1</th>
<td>Cell A1</td>
</tr>
</table>
We declare a table using the <table>...</table>
element. All the content of that table lives within those tags.
- Previous
- Next