HTML colors are specified with predefined color names, or with RGB, HEX, HSL, RGBA, or HSLA values. In HTML, a color can be specified by using a color name, and HTML supports 140 standard colors.
Background color can be set for HTML elements.
Ex: <h1 style="background-color:DodgerBlue;">Hello World</h1>
       <p style="background-color:Tomato;">Lorem ipsum...</p>
Texat can also be colored.
Ex: <h1 style="color:Tomato;">Hello World</h1>
       <p style="color:DodgerBlue;">Lorem ipsum...</p>
       <p style="color:MediumSeaGreen;">Ut wisi enim...</p>
Color borders are also something that can be done in HTML
Ex: <h1 style="border:2px solid Tomato;">Hello World</h1>
       <h1 style="border:2px solid DodgerBlue;">Hello World</h1>
       <h1 style="border:2px solid Violet;">Hello World</h1>
In HTML, colors can also be specified using RGB values, HEX values, HSL values, RGBA values, and HSLA values.
Ex: <h1 style="background-color:rgb(255, 99, 71);">...</h1>
      <h1 style="background-color:#ff6347;">...</h1>
      <h1 style="background-color:hsl(9, 100%, 64%);">...</h1>

     <h1 style="background-color:rgba(255, 99, 71, 0.5);">...</h1>
     <h1 style="background-color:hsla(9, 100%, 64%, 0.5);">...</h1>
They are all the same color but shown in different color values.
Back to Top