HTML | <font> color Attribute
The HTML <font> color Attribute is used to specify the text color inside the <font> element.
Syntax:
<font color="color_name|hex_number|rgb_number">
Attribute Values:
- color_name: It sets the text color by using color name. For example: “red”.
- hex_number: It sets the text color by using color hex code. For example: “#0000ff”.
- rgb_number: It sets the text color by using rgb code. For example: “rgb(0, 153, 0)”.
Note: The <font> color attribute is not supported by HTML5.
Example:
<!DOCTYPE html> < html > < head > < title > HTML font face Attribute </ title > </ head > < body > < font size = "6" face = "verdana" color = "green" > GeeksforGeeks! </ font > < br > < font size = "6" face = "arial" color = "#008000" > GeeksforGeeks! </ font > < br > < font size = "6" color = "rgb(128, 128, 0)" > GeeksforGeeks! </ font > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browser supported by HTML <font> color attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Safari
- Opera