Use a CSS Class to Style an Element- Step 13

Tell us what’s happening:

I don’t understand where I’m supposed to be put the “.red-text” in the CSS. what am I doing wrong?

Your code so far

<style>
  
  h2 {
     
   .red-text { color: red; }
  
  }
</style>

<h2 class="red-text">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>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/use-a-css-class-to-style-an-element

2 Likes

take h2 and the outer curly braces out of CSS

CSS is where you declare your classes (.red-text)

<h2 class="red-text">words</h2> is where you call that class.

1 Like

thank you!! it worked!!!

1 Like