The tutorial text color settings are formatted as follows:
<font color=color_value>...</font>
The color value here can be a hexadecimal number (with "#" as the prefix), or it can be the following 16 color names.
|
Black = "#000000" |
|
Green = "#008000" |
|
Silver = "#C0C0C0" |
|
Lime = "#00FF00" |
|
Gray = "#808080" |
|
Olive = "#808000" |
|
White = "#FFFFFF" |
|
Yellow = "#FFFF00" |
|
Maroon = "#800000" |
|
Navy = "#000080" |
|
Red = "#FF0000" |
|
Blue = "#0000FF" |
|
Purple = "#800080" |
|
Teal = "#008080" |
|
Fuchsia = "#FF00FF" |
|
Aqua = "#00FFFF" |
Take a look at the example:
<HTML>
<HEAD>
<TITLE> text color </TITLE>
</HEAD>
<body bgcolor=000080>
<CENTER>
<font color=white> Colorful World </FONT><BR>
<font color=red> Colorful World </FONT> <BR>
<font color= #00FFFF > Colorful World </FONT><BR>
<font color= #FFFF00 > Colorful World </FONT><BR>
<font color= #FFFFFF > Colorful World </FONT> <BR>
<font color= #00FF00 > Colorful World </FONT><BR>
<font color= #C0C0C0 > Colorful World </FONT><BR>
</CENTER>
</BODY>
</HTML>