Help me at this one

Tell us what’s happening:

Your code so far


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

<h2 class="red-text">CatPhotoApp</h2>

<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  
  <div>
    <p>Things cats love:</p>
    <ul>
      <li>cat nip</li>
      <li>laser pointers</li>
      <li>lasagna</li>
    </ul>
    <p>Top 3 things cats hate:</p>
    <ol>
      <li>flea treatment</li>
      <li>thunder</li>
      <li>other cats</li>
    </ol>
  </div>
  
  <form action="/submit-cat-photo">
    <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
    <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
    <label><input type="checkbox" name="personality" checked> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-a-css-class-to-style-an-element

Next time it would be helpful to describe what’s going wrong. You did not change your h2 in the style tag. It needs to be a class called red-text

just give an example

It gives you an example in the lesson. Look

See, you have class “red-text” for your h2 element.
Now style your h2 element using the class-name and not the tag name.
Does that help?

sorry i didn’t get it

Look in the lesson on how to make a style class. It literally the first thing it talks about.

“Inside your style element, change the h2 selector to .red-text“

it is not working why don’t you give a example

Instead of styling with h2 .
Use class “red-text” in this manner:

.red-text{
...Your style here...
}

What @aditya_p said. Make sure you take the time and really look at the examples they give you in the leasons