
Tables were originally invented as an organized way to display information. They consist of gridlines and look similar to a spreadsheet. Tables are now commonly used to control the layout of a page, as well as organize data. Tables make it possible to split an entire page into different columns. Many search engines do this.
<TABLE border=1>
<TR><TD>column 1</TD><TD>column 2</TD><TD>column 3</TD></TR>
<TR><TD>r2 c1 data</TD><TD>r2 c2 data</TD><TD>r2 c3 data</TD></TR>
<TR><TD>r3 c1 data</TD><TD>r3 c2 data</TD><TD>r3 c3 data</TD></TR>
</TABLE>

| column 1 | column 2 | column 3 |
| r2 c1 data | r2 c2 data | r2 c3 data |
| r3 c1 data | r3 c2 data | r3 c3 data |
| WIDTH | The width of the table (%, px, cm, or in). |
| BGCOLOR | The background color for the table (in hexadecimal). |
| BORDER | The thickness of the table's border (0 for no border). |
| CELLSPACING | The distance (in pixels) of the table gridlines from the table data. |
| CELLPADDING | The width (in pixels) of the table gridlines. |
| BGCOLOR | The background color for the row (in hexadecimal). |
| ALIGN | The alignment for the row data (ie. left, right, center). |
| WIDTH | The width of the column (%, px, cm, or in). |
| BGCOLOR | The background color for the cell (in hexadecimal). |
| ALIGN | The alignment for the cell data (ie. left, right, center). |
| COLSPAN | The number of columns for the single cell to span. |

This page was created by Scott Andersen, Eric Schroeder, and Drew Viersen.