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:
Inning | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Final |
Red Sox | 0 | 0 | 2 | 3 | 1 | 0 | 0 | 1 | 1 | 8 |
Giants | 0 | 0 | 3 | 2 | 0 | 0 | 0 | 0 | 0 | 5 |
Giants suck...
tr is short for Table Row. td is short for Table Data.