FREE HTML CODE
Search HTML Code

HTML Code for Colors

CSS provides the color property and the background-color properties, both of which can be applied to any HTML element. And there's the border-color and outline-color properties for borders and outlines. You can also specify color for borders with the border property (which allows you to set all border properties in one go), and likewise for outlines with the outline property.
Colors can be defined using either its color name, its hexadecimal value, or its rgb value.

Examples of Setting Color using Inline Styles:



<div style="background-color:olive;
  border:2px solid black;
  color:maroon;
  width:300px;">
<p>HTML code for colors or

<span style="color:orange">CSS code for colors</span>
that's the question...</p>
</div>


This code results in:

HTML code for colors or CSS code for colors that's the question...

If you don't want to specify the color everytime an element appears, you can declare it in the document head or, even better, in an external stylesheet.
| More