I cant tell if im doing something wrong or not?

Tell us what’s happening:
Describe your issue in detail here. Im stuck on this level of the HTML course, the step it says im missing or have wrong is the closing tag in the ordered list, ive gone through forums and i still cant tell what im missing or what im doing wrong. If someone could point me in the right direction id appreciate it very much. I feel like its something super easy and simple and im just over thinking it… well my code is below, help plz?

  **Your code so far**

<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>

<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>Garfield</li>
<li>Sylvester</li>
<li>Birds</li>
</ol>
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36

Challenge: Create an Ordered List

Link to the challenge:

It’s expecting it in lowercase.

When I fix that, your code passes for me.

1 Like

Thank you so much!! I knew it was something i was just overlooking. i tend to overcomplicate stuff when i think it should be easy! Again thank you and i appreciate the quick response!

It happens in coding. We all make silly little mistakes. With time you’ll get better at spotting them, but they never completely go away.

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