I want to create a table with arial font throughout, but if I apply font arial tag to table tag it doesn't work
Only thing I can make work is to apply tag cell by cell.
How else could I do it to save individual cell tagging?
//create a table for display
print ("<TABLE BORDER=0 WIDTH=\"75%\"
CELLSPACING=2 CELLPADDING =2
ALIGN=LEFT>\n");
print ("<TR ALIGN=LEFT VALIGN=TOP>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><font face=\"Arial,Helvetica,sans-serif\"><strong>Company</strong></font></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Activity</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Contact</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Phone</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Mobile</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Email</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Add1</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Add2</strong></td>\n");
print ("<TD ALIGN=LEFT VALIGN=TOP><strong>Add3</strong></td>\n");
print("</tr>\n");