Open In App
Related Articles

HTML <hr> color Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <hr> color Attribute is used to specify the color of a Horizontal rule. It is not supported by HTML 5.
Syntax: 
 

<Hr color= "color_name | hex_number | rgb_number"> 

Attribute Values: 
 

  • color_name: It sets the Text color by using the color name. For example “red”.
  • hex_number: It sets the text color by using the color hex code. For example “#0000ff”.
  • rgb_number: It sets the text color by using the rgb code. For example: “RGB(0, 153, 0)”.

Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML hr color Attribute
    </title>
</head>
 
<body style="text-align:center;">
    <h1>GeeksforGeeks</h1>
    <h2> Hr color  attribute</h2>
    <hr width="500px;" color="red"
        size="10">
     
<p>Computer science portal</p>
  
    <hr width="70%"
        size="20" color="blue"
        noshade>
</body>
 
</html>


Output 

 

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 05 May, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials