<font>Customize fonts within your HTML document. Change colors, fonts, or sizse. Attribute | Description | class | Classify or name your elements. For instance, if you classify several paragraph elements the same name, using CSS it is possible to give them all the same styles in one line of code. | color | Add color to the text of elements. Use a numeric, hexidecimal, or named value.
| dir | Change the display of text from left to right, or right to left. Very useful in language translation. | face | Change a font using a font name you have installed on your computer. | id | Specify an ID for your elements. | lang | Define the language to display your element in. Here's a link to the abbreviations of languages. http://www.oasis-open.org/cover/iso639a.html | size | Add size to varying elements, usually indicates font size, or corresponders to the number of characters to be displayed with form elements. | style | Used to create inline styles such as CSS. | title | Places a "pop-up" title for an element upon mouse over. Similar to "help" pop-ups in word programs. |
Code:
<font face="Geneva" color="maroon" size="5">This font has been customized.</font>
Display:
This font has been customized.
Deprecated:
|