Change the Color of Text - Auto Grader is not working?

Tell us what’s happening:
Hi, Auto grader is not working with below code, I have tried event all alternatives. Cant see what is wrong with below style code Thanks for your help.

style=“color:red ;”

Your code so far


<h2 style="color:red ;" >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.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/change-the-color-of-text

Change it for

<h2 style=“color:red ;”>

no space after the color: red

je pense que ce n’est pas la bonne syntaxe essaie le comme ça:
<h2 style=“color: red;”>CatPhotoApp</h2> au lieu de

la différence c’est les espaces dans ton code!!!

I think it’s not the right syntax try it like this:
& lt; h2 style = “color: red;”> CatPhotoApp & lt; / h2 & gt; instead of

[quote = “uslu16, post: 1, topic: 240293”]
& lt; h2 style = “color: red;” & Gt; CatPhotoApp & lt; / h2 & gt;
[/ Quote]

the difference is the spaces in your code !!!