Answer: In order to display a specific font face within your tables, you must use a separate font tag within each table cell.

<TABLE>
<TR>
<TD font face="Arial">text</font></TD>
<TD font face="Arial">text</font></TD>
</TR>
</TABLE>

If you'd rather not use a font tag within each of your table cells, there is an easier way. Place the following code between the HEAD and /HEAD tags. This code will specify the font style for all of your table cells.

<STYLE TYPE="text/css">
<!--
TD{font-family: Arial; font-size: 12pt;}
-->
</STYLE>