Please guys help

i dont know why my code is not passing and btw i have to do this
Step 19

After the h3 element with the Things cats love: text, add an unordered list (ul) element. Note that nothing will be displayed at this point.

<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>
  </section>
</main>
</body>

</html>

Challenge: Step 19

Link to the challenge:

Hi @bat.mouse25 , welcome to the forum.
Take a closer look at the element you added. It says u1 (u one), but there isn’t any html tag like that.
Double check the text from task to see what is the element that you need to add to show an unordered list :slight_smile:
Edit: also, the element that you need to add isn’t a self-closing tag, as it’s used to wrap other kind of elements (that you’ll see in the next step).

1 Like

You just need to add this:

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