html variations of a clas code example
Example 1: class html
<p class="ThisIsAClassName">HI</p>
Example 2: html specific class color
<!-- in the head element -->
<style> h1 { color:blue; } </style>
<!-- in the body element -->
<h1> text in blue because all "h1" element is in blue </h1>