Learn HTML by Building a Cat Photo App - Step 20

Tell us what’s happening:
Describe your issue in detail here.

Can somebody please tell me what’s wrong in this code?
Your code so far

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
    <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </section>
    <section>
      <h2>Cat Lists</h2>
      <h3>Things cats love:</h3>
      <u1>
        <li>Cat Nip</li>
        <li>Laser Pointers</li>
        <li>Lasagna</li>
      </u1>
    </section>
  </main>
</body>
</html>
  **Your browser information:**

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

Challenge: Learn HTML by Building a Cat Photo App - Step 20

Link to the challenge:

you’ve got too much code.
They just wanted an unordered list here. (not the li as well)

Can you be more specific about what part of step has you stuck?

What should I do Mam ?

what did the instructions say to do?

It just say add an unordered list (u1) element.

yes ul not u1
so just add the ul tags, nothing else

Thankyou mam I had noticed that and I have changed it.

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