Horje
How to create HTML HEX Color Values

In HTML, a color can be specified using a hexadecimal value in the form:

#rrggbb

Where rr (red), gg (green) and bb (blue) are hexadecimal values between 00 and ff (same as decimal 0-255).

For example, #ff0000 is displayed as red, because red is set to its highest value (ff), and the other two (green and blue) are set to 00.

Another example, #00ff00 is displayed as green, because green is set to its highest value (ff), and the other two (red and blue) are set to 00.

To display black, set all color parameters to 00, like this: #000000.

To display white, set all color parameters to ff, like this: #ffffff.


Full Example of HTML HEX Color Values

In HTML, a color can be specified using a hexadecimal value in the form:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1 style="background-color:#ff0000;">#ff0000</h1>
<h1 style="background-color:#0000ff;">#0000ff</h1>
<h1 style="background-color:#3cb371;">#3cb371</h1>
<h1 style="background-color:#ee82ee;">#ee82ee</h1>
<h1 style="background-color:#ffa500;">#ffa500</h1>
<h1 style="background-color:#6a5acd;">#6a5acd</h1>

</body>
</html>

Output should be:

Full Example of HTML HEX Color Values





Related Articles
What is HTML HEX Colors HTML HEX Colors
How to create HTML HEX Color Values HTML HEX Colors
How to create HTML Shades of Gray HTML HEX Colors

Single Articles
Full Example of HTML HEX Color ValuesHTML HEX Colors

Read Full:
HTML HEX Colors
Category:
Web Tutorial
Sub Category:
HTML HEX Colors
Uploaded:
1 year ago
Uploaded by:
Admin
Views:
68


Reffered: https://www.w3schools.com/html/tryit.asp?filename=tryhtml_color_hex

Share on: