In addition to the above tags, newer browsers also support font tags which allow you to specify size, color, and font face for HTML text.
Example:
<FONT SIZE=3>Font size tags range from 1 to 7:</FONT>
<FONT FACE="Helvetica, Arial ">
The newest browsers support the FONT FACE tag but specifying a typeface on the web is still an inexact science.
</FONT>:
<FONT FACE="Times, Times New Roman">
This is because present methods rely on the specified fonts being installed in the user's system. If they are not, default choices are used instead.
</FONT>:
To insure that your page looks like you want it to on the largest number of browsers and platforms, specify a series of fonts being sure to include common fonts for both Macintosh and Windows platforms.
Some examples:
FONT FACE="arial"
FONT FACE="Georgia, New York, serif"
FONT FACE="Arial, Helvetica, sans serif"
Keep in mind that some fonts are designed to be viewed on a computer screen and others in printed documents. Screen fonts, such as Verdana, Georgia, Geneva and New York, are more legible on web pages than are print fonts such as Times, Times Roman, Helvetica, Arial, etc.

