The <FONT> Tag
The <FONT> tag allows the HTML author to change the appearance of any text on their web page. All text between the <FONT> and </FONT> tags will be affected with the parameters given in the leading <FONT> tag. The parameters for the <FONT> tag are as follows:
Some Examples...
| HTML Code | Result |
|---|---|
<FONT SIZE="-2">an itsy-bitsy font</FONT> <FONT SIZE="3">Normal Sized Font</FONT> <FONT SIZE="+1">A Little Bigger Font</FONT> <FONT SIZE="+3">A Much Bigger Font</FONT> |
an itsy-bitsy font Normal Sized Font A Little Bigger Font A Much Bigger Font |
<FONT SIZE="-1" COLOR="Blue">Little Boy Blue</FONT> <FONT SIZE="+3" COLOR="Red">BIG Red!</FONT> <FONT COLOR="Yellow">Mellow Yellow</FONT> |
Little Boy Blue BIG Red! Mellow Yellow |