Just add a background=”yourimagehere.gif” to your <td> tag.
<!— begin code here –>
<table border=”1″ cellpadding=”4″ cellspacing=”0″ align=”center” width=”65%”>
<tr>
<td align=”center” background=”yourimagehere.gif“>THIS IS NEAT!!</td>
</tr>
</table>
<!— end code here –>
SAMPLE:
Add BGCOLOR=”#ffff00″ (replace with color of your choice) within the <TD> tag.
<!— begin code here –>
<TABLE CELLPADDING=”2″ CELLSPACING=”2″ WIDTH=”65%”>
<TR>
<TD BGCOLOR=”#ffff00″>Column 1</TD>
<TD BGCOLOR=”#ffff00″>Column 2</TD>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
</TABLE>
<!— end code here –>
SAMPLE:
| Column 1 |
Column 2 |
| Row 2 |
Row 2 |
Adding color to your table border is easy! Just add BORDERCOLOR=”#ff0000″ (replace with the color of your choice) within your <table> tag.
<!— begin code here –>
<TABLE BORDER=”2″ BORDERCOLOR=”#ff0000″ CELLPADDING=”4″ CELLSPACING=”0″ WIDTH=”65%”>
<TR>
<TD>Column 1</TD><TD>Column 2</TD>
</TR>
</TABLE>
<!— end code here –>
SAMPLE:
I usually stick with the widely installed fonts: Verdana, Arial, Tahoma, Monaco, Helvetica, Georgia, and Times New Roman.
However, if you insist on using an unusual fancy-prancy font, you can save the text as an image instead. Simply create a graphic in your favorite image editing program, and put your text in it. All your visitors will see the font you want them to see!