<h1>This is the first h1</h1>
<h1 id="gary">this is the GARY h1</h1>
<h1 id="sally">this is the SALLY h1</h1>
<h1>this is the 4th h1</h1>
/* just giving some background color and font color here */
body {
  background: #494949;
  color: #eaeaea;
}

/* this is the element selector */
h1 {
  color: red;
}

/* and here are the hook references to gary and sally */
#gary {
  color: lightgreen;
}

#sally {
  color: green;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.