Tables are composed of rows and columns. They are used to display data. Remember that:
The table tag creates a table. Rows are defined using the tr tag and columns are defined using the td tag.
The following table is composed of three rows and ten columns:

| Quarter | 1 | 2 | 3 | 4 | Final |
| 49ers | 10 | 7 | 28 | 3 | 48 |
| Raiders | 0 | 3 | 3 | 0 | 6 |
tr is short for Table Row. td is short for Table Data.