Launch your tech mastery with us—your coding journey starts now!
Course Content
HTML Elements and Attributes
0/2
HTML Styles
0/1
HTML Lists
0/1
JavaScript with HTML
0/1

HTML Colors

 

Background Color

You can set the background color for HTML elements:

Example:

<h1 style=”background-color:DodgerBlue;”>Hello World</h1>

<p style=”background-color:Tomato;”>Lorem ipsum…</p>

 

Text Color

You can set the color of text:

<h1 style=”color:Tomato;”>Hello World</h1>

<p style=”color:DodgerBlue;”>Lorem ipsum…</p>

<p style=”color:MediumSeaGreen;”>Ut wisi enim…</p>

 

Border Color

You can set the color of borders:

<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> color Values

In HTML, colors can also be specified using RGB values, HEX values, HSL values, RGBA values, and HSLA values.

The following three <div> elements have their background color set with RGB, HEX, and HSL values:

rgb(255, 99, 71)

#ff6347

hsl(9, 100%, 64%)

The following two <div> elements have their background color set with RGBA and HSLA values, which add an Alpha channel to the color (here we have 50% transparency):

rgba(255, 99, 71, 0.5)

hsla(9, 100%, 64%, 0.5)

 

Example

<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>