HTML <hr> color Attribute
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
Please Login to comment...