Blue cat problems

Stuck on this piece of code, has anyone solved this?

Your code so far

<style>
h2 {color:blue;}
</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 (Macintosh; Intel Mac OS X 10_12) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50.

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

What does your failing test say?

It looks like you don’t even have an h2 element.

Thank you.

I’m very new to coding, what is a failing test?

Is this my h2 element? h2 {color:blue;}

That is not an html element. That is a CSS style that would make any h2 elements blue if you had any. HTML elements are what you have been working with so far. Like <p>...</p>, <h2>...</h2>, etc.

There test descriptions underneath the challenge descriptions. If a test has a green checkmark it passed, if it has a red :x: it failed.