HTML Tutorial

The language for building web pages.

HTML Colors

HTML Colors

HTML colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values.

Color Formats:

  • Color Name: red, blue, tomato
  • HEX: #ff6347
  • RGB: rgb(255, 99, 71)
  • RGBA: rgba(255, 99, 71, 0.5) (with opacity)
  • HSL: hsl(9, 100%, 64%)

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics