This is <FONT SIZE=+1>resized</FONT> text. <BR> This is <FONT SIZE=-2>resized</FONT> text. <BR> This is <FONT SIZE=4>resized</FONT> text. <BR>
which is rendered as:
This is resized text.
This is resized text.
This is resized text.
You can specify the font size relative to the current size (using + or -) or as an absolute size from 1 to 7.
Multiple fonts can be specified, separated by a comma -- the browser looks through the font list, and chooses the first one it finds on the local system. For example, FACE="arial,helvetica,time" will first try arial, then helvetica if arial is not present, and finally try times-roman. Here are some examples:
<FONT FACE="arial,helvetica">Refaced</FONT> text.<BR> <FONT FACE="times,helvetica">Refaced</FONT> text.<BR> <FONT FACE="courier">Refaced</FONT> text.
which is rendered as:
Refaced text.Font color can also be controlled, using a COLOR attribute. For example, COLOR="red" or COLOR="#ff0000" requests red text font. There are several supported color names, but to safe it is best to use RGB color codes, as in COLOR="#RRGGBB".
Example:
<BODY>
<FONT COLOR="#FF0000">This text is red.</FONT>
</BODY>
<BODY>
<FONT COLOR="red">This text is also red.</FONT>
</BODY>