If you are using font tags within large tables to modify the style of the text within cells, you may be making your pages larger than needed.
Let’s look at the following sample table. Note how the FONT tags are being used to set the font style of text inside each cell. If you have a large table, these font style tags could multiply the size of your page, especially if the texts inside the cells are smaller than the font tags.
<table border=1>
<tr><td>
<font face=”Arial”>test 1</font>
</td></tr>
<tr><td>
<font face=”Arial”>test 2</font>
</td></tr>
<tr><td>
<font face=”Arial”>test 3</font>
</td></tr>
<tr><td>
<font face=”Arial”>test 4</font>
</td></tr>
</table>
If your visitors are using Cascading Style Sheets enabled browsers such as {X_CSSBROWSERS} or compatible, you could use the TD{font-family: Arial; font-size: 10pt;} style sheet tag as follows. Doing so will make text inside all TD tags use the specified font face and other specified attributes such as the font size.
<html>
<head>
<STYLE TYPE=”text/css”>
<!–
TD{font-family: Arial; font-size: 10pt;}
—>
</STYLE>
</head>
<body>
<table border=1>
<tr><td> test 1 </td></tr>
<tr><td> test 2 </td></tr>
<tr><td> test 3 </td></tr>
<tr><td> test 4 </td></tr>
</table>
</body>
</html>
Tags: Create my own font, Create your own font, Font Creation Website, font creator, Font creators, Font generator, font generators, Font image generator, Fonts, Generate your own font, Make my own font, Make Your Own Font, My handwritting font, Online font creator, Your handwriting font