Table Tag
What It Does:
The table tag only designates the beginning or end of the table. To create a complete table,
you also need the "tr" tag to create table rows, and the "td" tag to create table data cells.
The Syntax:
<table>
<tr>
<td>
Row 1, Cell One
</td>
<td>
Row 1, Cell Two
</td>
</tr>
<tr>
<td>
Row 2, Cell One
</td>
<td>
Row 2, Cell Two
</td>
</tr>
</table>
- All of these tags are not self-closing.
- The additional elements might be the "th" tag, the "thead" tag, and the "tbody" tag.
- Tables have some specific css styles, including border-collapse.