I think im doing it

So it tells me to make and unordered list on the things cats love so I did the ul and it said it wasn’t an unordered list

  **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>
<ul>
<p>Things cats love:</p>

  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>water</li>
<li>water</li>
<li>even more water</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/99.0.4844.74 Safari/537.36

Challenge: Create an Ordered List

Link to the challenge:

The issue may be the <p>tag inside of your <ul>.

1 Like

Webaroo is Right.

The code written is correct. The <ul> tag has been moved above the <p> tag.
Replace it above the unordered list section:

  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>

Or reset the code, and write your code again ( or cut and paste it).

Screenshot 2022-03-22 4.27.15 PM

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