Font Color
I can alter the
C
O
L
O
R
of my font
with <FONT COLOR="#hexvalue">.
Substitute "#hexvalue" for any six digit hexadecimal number. Quotes are use to distinguish the value part of the tag's attribute. The # sign precedes the hex value, for example:
| <FONT COLOR="#FF0000">Hello> | Hello |
| <FONT COLOR="#00FF00">Hello> | Hello |
| <FONT COLOR="#0000FF">Hello> | Hello |
|
<FONT COLOR="#FF0000">H</FONT> <FONT COLOR="#0000FF">E</FONT> <FONT COLOR="#00FF00">L</FONT> <FONT COLOR="#FF00FF">L</FONT> <FONT COLOR="#FFFF00">0</FONT> |
H E L L 0 |