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>