CSS Selectors in Style Elements

Tell us what’s happening:

Your code so far

<style>h2 {color: red;}</style>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; CrOS x86_64 10323.62.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.184 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/use-css-selectors-to-style-elements

<style> 
  h2 {
    color: blue;
  }
</style>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

You just have to put blue color, not red.
Codes above are just examples.

Your h2 element should be blue

In the page, the third of commands shows “Your h2 element should be blue.”