You should have only one ul element. test fail for ordered list exercise

Hi! I am in need of help and can not figure out what is wrong with my code. I keep getting a test fail on this with: “You should have only one
ul element.” I have reset the code, found solutions online to copy into and searched for answers… I can not figure out how I have more than one ul element. Thank you.
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://bit.ly/fcc-relaxing-cat" 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>dogs</li>
    <li>water</li>
    <li>humans</li>
</ol>  
</main>
**Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36

Challenge: Create an Ordered List

Link to the challenge:

When I try running your code it passes the tests. There could be a problem with the browser cache. Try resetting the challenge and inputting your solution again.

1 Like

@amp ,
In your <p>Things cats love:</p> tag there is a typo </ap> change it to </p>

1 Like

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