h1, h2, h3 class

Standard HTML tags for defining headings (h1-h3).

The following illustrations show: 

  1. The h1, h2, h3 style before applying CSS changes.

  2. The h1, h2, h3 style after the color property has been changed to orange.

Default CSSModified CSS


h1, h2, h3 {
margin-bottom:20px;
font-size: 22px;
}


h1, h2, h3 {
margin-bottom:20px;
font-size: 22px;
color: orange;
}

Did this page help you?