|
|
|
Tables are defined with a pair of tags: <TABLE></TABLE>. Rows are defined with the TR tag and cells with the TD tag. Other tags are explained in a tables tutorial at Table Tutor. The table below is produced by the HTML code that follows:
<TABLE BORDER COLS=2 WIDTH="50%" BORDER=1> <TR> <TD><B>Column 1</B></TD> <TD><B>Column 2</B></TD> </TR> <TR> <TD>Item 1A</TD> <TD>Item 2A</TD> </TR> <TR> <TD>Item 1B</TD> <TD>Item 2B</TD> </TR> </TABLE>
|