HTML <font> Tag
Description:
The <font> tag is used to specify the font to use.
This tag is deprecated in HTML 4.01, use CSS font property.
Specific Attributes:
| Attribute | Definition |
| size | Specifies the size of text. |
| color | Specifies the color of text. |
| face | Specifies the font of text |
Other Attributes:
| Attribute | Definition |
| dir |
Specifies the text direction for the content in
an element.
|
| class | Specifies a classname for an element. |
| id | Specifies a unique id for an element. |
| lang | Specifies a language code for the content in an element. |
| title | Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip"). |
| style | Specifies an inline style for an element. |
Example Code:
<font size="3" color="red">This is some
text!</font>
<font size="2" color="blue">This is some text!</font>
<font face="verdana" color="green">This is some text!</font>
Result
This is some text!
This is some text!
This is some text!