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 {<br/> margin-bottom:20px; <br/> font-size: 22px; <br/>}


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