HTML Colors



HTML tones are determined with predefined variety names, or with RGB, HEX, HSL, RGBA, or HSLA values.

Color Names :

In HTML, a color can be specified by using a color name:

<!DOCTYPE html>

<html>

     <body>

          <h1 style="background-  color:Tomato;">Tomato</h1>

          <h1 style="background-color:Orange;">Orange</h1>

          <h1 style="background-color:DodgerBlue;">DodgerBlue</h1>

         <h1 style="background-color:MediumSeaGreen;">MediumSeaGreen</h1>

         <h1 style="background-color:Gray;">Gray</h1>

         <h1 style="background-color:SlateBlue;">SlateBlue</h1>

        <h1 style="background-color:Violet;">Violet</h1>

        <h1 style="background-color:LightGray;">LightGray</h1>

</body>

</html>

Background Color

You can set the background color for HTML elements:

<!DOCTYPE html>

<html>

<body>

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

<p style="background-color:Tomato;">

        Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh                                   euismod        tincidunt ut laoreet dolore magna aliquam erat volutpat.

       Ut wisi enim promotion minim veniam, quis nostrud exerci tation ullamcorper suscipit                           lobortis nisl ut aliquip ex ea commodo consequat.

</p>

</body>

</html>

Post a Comment

0 Comments