Use CSS Selectors to Style Elements i need help here

Tell us what’s happening:

Your code so far

<html>
  <body>
<style>
  h2{color:blue;}
    </style>
    <h2>cat photoaApp</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>
    </style>
  </body>
</html>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:57.0) Gecko/20100101 Firefox/57.0

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

When I ran your code, all tests pass except this one:
image

Read your code in the editor again carefully and make sure you open and close your style tags properly.
Tags usually come in pairs, so you should see one opening tag <style> and one closing tag </style>.

1 Like