CSS Color Tutorial

  • Post category:CSS

Get the code of CSS Color Tutorial and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<h1>Heading</h1>
<h2>Subheading</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since 1966</p>
h1 {
  color: red;
}
h2 {
  color: green;
}
p {
  color: blue;
}