Tables

Tables are composed of rows and colums. They are used to display data. Rember that:

The table tag created a table. Rows are defined using the tr tag and cells are defined usig the th or the td tag.

The following table is composed of three rows and eleven columns and their cells:

Giant's Logo
Inning 1 2 3 4 5 6 7 8 9 Final
Dodgers 0 0 2 3 0 0 0 0 1 6
Giants 0 0 3 2 0 0 0 0 0 5

tr is short for Table Row.
th is short for Table Header.
td is short for Table Data.