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.
Sets of information can be grouped into rows and columns using basic table codes. To place a standard thin-line border around the table and between cells, use the border attribute within the <TABLE> code. To create a thicker border around the table, use a number representing size in pixels within the border attribute as in the third example below.
|
<TABLE> <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> <TD>Red</TD> <TD>Green</TD> <TD>Blue</TD> </TR> <TR> <TD>Orange</TD> <TD>Yellow</TD> <TD>Purple</TD> </TR> </TABLE> |
|
<TABLE BORDER=10> <TR> <TD>Red</TD> <TD>Green</TD> <TD>Blue</TD> </TR> <TR> <TD>Orange</TD> <TD>Yellow</TD> <TD>Purple</TD> </TR> </TABLE> |