Creating a Table
Below is an example of a table with two rows (<tr>) with two columns (<td>).
<TABLE>
<TR>
<TD>First Cell First Row</TD>
<TD>Second Cell First Row</TD>
</TR>
<TR>
<TD>First Cell Second Row</TD>
<TD>Second Cell Second Row</TD>
</TR>
</TABLE>
Cell Alignment:
<TD ALIGN=CENTER>Text that Appears in Cell</TD>
<TD ALIGN=RIGHT>Text that Appears in Cell</TD>
<TD ALIGN=LEFT>Text that Appears in Cell</TD>
Formatting A Table:
An example of a table aligned to the center and formatted with a width, border, spacing, and cellpadding.
<TABLE ALIGN=CENTER WIDTH=640 BORDER=10 CELLSPACING=5 CELLPADDING=2>
To create colored background for a table, row, or cell, enter the following tags:
<TABLE BGCOLOR=color>
<TR BACKGROUND=color>
<TD BACKGROUND=color>
<TH BACKGROUND=color>