Pretty boxes are created by using the TABLE tag. You can set
your BGCOLOR for the entire TABLE, or just for certain cells.
Yes, you can use more than one or two colors in your tables!
Also, notice how you can use the CENTER and LEFT ALIGNS in
your TD (cells) to make heading, etc... Take this example and
have some fun!
source code
<TABLE WIDTH="450" BGCOLOR="#B6EBFF" BORDER="3" CELLSPACING="4"
CELLPADDING="4">
<TR>
<TD ALIGN="CENTER">
<B>This is an example of a pretty box!</B>
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" BGCOLOR="FFFEA8">
Pretty boxes are created by using the TABLE tag. You can set
your BGCOLOR for the entire TABLE, or just for certain cells.
Yes, you can use more than one or two colors in your tables!
Also, notice how you can use the CENTER and LEFT ALIGNS in
your TD (cells) to make heading, etc... Take this example and
have some fun!
</TD>
</TR>
</TABLE>