HTML HEX Colors
HEX writes a color as #rrggbb using base-16 digits.
A HEX color starts with a # followed by six digits: two for red, two for green, two for blue. Each pair ranges from 00 to ff.
A HEX color
<!DOCTYPE html>
<html>
<body>
<h1 style="color:#ff6347;">HEX color</h1>
</body>
</html>Note: #000000 is black, #ffffff is white, and equal pairs like #808080 give gray.