Unordered List <u1> </u1> I think?

Tell us what’s happening:
Describe your issue in detail here.
It seems so easy, do two , but its not working.
Your ul element should have an opening tag. Opening tags have this syntax: <elementName> .
I’ve gotten this before and I still don’t know what it means.
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> 
        </u1>
    </section>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14695.85.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 19

Link to the challenge:

Hey,
So, it seems like you’re confusing the letters or made a type.
<ul> (unordered list) not <u1>

Right on. I thought the l’s were 1’s.

Thanks.

1 Like

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