Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | <font> color Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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: 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML | <font> color 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>

Output:

  

Supported Browsers: The browser supported by HTML <font> color attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

HTML is the foundation of webpages, is used for webpage development by structuring websites and web apps.You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples.

My Personal Notes arrow_drop_up
Last Updated : 14 Sep, 2022
Like Article
Save Article
Similar Reads
Related Tutorials