HTML Colors

All HTML topics
∙ Chapter 09

HTML Colors

Colors in HTML are applied with the style attribute using CSS color properties. Multiple formats are supported.

FormatExampleNotes
Namered, blue, tomato140+ built-in color names
HEX#ff0000, #3498dbMost popular format in CSS
RGBrgb(255, 0, 0)Red, Green, Blue values 0–255
RGBArgba(255,0,0,0.5)Same + transparency (0=clear, 1=solid)
HSLhsl(0,100%,50%)Hue, Saturation, Lightness
colors.php
📝 Edit Code
👁 Live Preview
💡 Try replacing "tomato" with "coral" or change the hex code "#3498db" to "#e74c3c"!