Can't finish second exercise CSS

Hello, i’m following the freecodecamp courses.

In following the CSS courses, i’m not being able to finish the second test even though i think it’s correct.

Code and screenshot below

  **Your code so far**

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


<h2>CatPhotoApp</h2>

<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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="https://freecatphotoapp.com/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 (X11; Ubuntu; Linux x86_64; rv:98.0) Gecko/20100101 Firefox/98.0

Challenge: Use CSS Selectors to Style Elements

Link to the challenge:

check your internet connection. I have that problem when data is low on hotspot or I lose connection and don’t realize it. other than that make sure your spelling is correct.

I have a stable internet connection, and i’m connected through ethernet, i don’t think that is the problem, i tried several times for the last 3 hours…

If you have a dark mode extension installed you have to disable it for the curriculum.

Your answers are correct

If it isn’t dark mode causing the issues, try deactivating any browser extension that has access to freecodecamp, add blockers etc, And try updating your browser to latest version or use a different, fully updated browser…

If none of these things work, try using a different Device to complete the lesson.

No dark mode extension, this is freecodecamp own setting.

Sorry guys, my mistake, after all the dark mode extension was still activated, i disabled all other extensions but forgot this one, so lasjork answer was right.
Thanks and sorry

It’s a good thing to remember for the future. Yesterday, someone thought there was a error in their Tribute Project, when It was viewed on the phone. However, it was simply on dark mode.

It’s easy to forget it’s on.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.