This browser does not support basic Web standards, preventing the display of our site's intended design. May we suggest that you upgrade your browser?
Note: The HTML pages are out-of-date and will not be updated.
To organize table data and make it more readable, use column headers or row headers. Both types of headers appear boldface and centered in their cells. The table data code <TD> is replaced with the table header code <TH> for row and column headers. Column header codes are generally grouped together in a single row (within the <TR> code).
|
<TABLE BORDER=1> <TR> <TH>Colors 1</TH> <TH>Colors 2</TH> <TH>Colors 3</TH> </TR> <TR> <TD>Red</TD> <TD>Green</TD> <TD>Blue</TD> </TR> <TR> <TD>Orange</TD> <TD>Yellow</TD> <TD>Purple</TD> </TR> </TABLE> |
|
<TABLE BORDER=1> <TR> <TH>Colors 1</TH> <TD>Red</TD> <TD>Green</TD> <TD>Blue</TD> </TR> <TR> <TH>Colors 2</TH> <TD>Orange</TD> <TD>Yellow</TD> <TD>Purple</TD> </TR> </TABLE> |