Heading with no class
Heading with class of small
Heading with class of bright
h2 { font-size: 2em; color: #000; font-family: Georgia, 'Times New Roman', Times, serif; } .small { font-size: 1em; } .bright { color: rebeccapurple; }
<h2>Heading with no class</h2> <h2 class="small">Heading with class of small</h2> <h2 class="bright">Heading with class of bright</h2>