
The Font Tag
Does many things, from changing the text color, to changing the size, or type.
How to change
the text color. The attribute that changes the color, is the COLOR attribute.
<FONT
COLOR="Red">This text is RED</FONT>
Now we have red
text, so now we can change the type of font used, from the default, to Symbol,
not that it is a great font, but that it is at least different. The attribute
that changes the font type, is the FACE attribute.
<FONT
COLOR="Red" FACE="Symbol">This text is RED</FONT>
The attribute
that changes the size is the SIZE attribute, the size can range from 7, the
largest, to 1 the smallest.
<FONT
COLOR="Red" FACE="Times New Roman" SIZE="7">This text is RED, is using Times New Roman,
and its size is 7.</FONT>