Tables
Tables are composed of rows and columns. They are used to display data. Remember that:
- Rows go side to side.
- Columns go up and down.
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 four rows and three columns:
The following table is composed of two rows and four columns:
tr is short for Table Row.
td is short for Table Data.