|
|
home
/ reference
/ html
<font></font>

color
size
face
<font color="">
| |
Description
| |
The color attribute allows you to change the color of the specified text. Colors may be entered in the hexadecimal form #RRGGBB or may be specified with one of the following words: aqua, black, blue, fuchsia, grey, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow.
|
Code (Hexadecimal)
| |
<font color="#FF0000">YOUR TEXT HERE</font>
|
Code (Color Name)
| |
<font color="red">YOUR TEXT HERE</font>
|
Appearance
|
<font size="">
| |
Description
| |
The size attribute allows you to change the font size of specific text. Sizes may be specified relative to the normal or absolutely.
|
Code (Relative)
| |
<font size="+2">YOUR TEXT HERE</font>
|
Code (Absolute)
| |
<font size="5">YOUR TEXT HERE</font>
|
Appearance
|
<font face="">
| |
Description
| |
The face attribute allows you to specify a specific font face such as Courier or Arial. You may specify a list of font faces separated by a comma. If the browser cannot find the first font face in the list then it will continue through the list until it finds an available font face.
|
Code (Single Font)
| |
<font face="Courier">YOUR TEXT HERE</font>
|
Code (Multiple Fonts)
| |
<font face="Courier, Palatino">YOUR TEXT HERE</font>
|
Appearance
|
|