Css selectors style to element

There the problem l can’t get h2 element to change to blue. Where l’m now https://www.freecodecamp.org/challenges/use-css-selectors-to-style-elements.

It can be done. Double check everything or post the code here as @camperextraordinaire has instructed.

-WWC

  1. Remove style = “color: red” from your h2 tag.
  2. At the top of the lines of code, put this:
<style>
h2 {
      color: blue;
     }
</style>