Tables

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:



Inning123456789Final
Dodgers0023000016
Giants0032000005



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