Having problems Make sure all your style elements are valid and have a closing tag

Having problem with making my h2 element the color blue Tell us what’s happening:

Your code so far

--> style="color: blue">CatPhotoApp</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>
<style {Color:blue;} >CatPhotoApp</style> 
<style>h2 {color : blue;} h2</style>```
**Your browser information:**
So far all my elements have a closing tag getting a little confused. Need to know what I am doing wrong.

Your Browser User Agent is: ```Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36```.

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

You are using the style tag incorrectly.
Ex. Below makes all

have color red.

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

Ex. file the

will be red but the h2 will not change

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

<p>Kitty ipsum dolor sit amet,</p>

Thank You, I already figured it out.