Use a CSS Class to Style an Element

The instructions state to apply the CSS class name of red-text to the h2 tag.

The declaring of the CSS class is incorrect.

h2 {"red-text" color: blue;} // INCORRECT
.red-text { color: red; } // CORRECT

CSS Class

.CLASS_NAME{..}

CSS ID

#ID-NAME{ ..}