Learn HTML by Building a Cat Photo App - Step 21

i cant see what i am doing wrong

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>

<!-- User Editable Region -->

        <ul>
          <l1>cat nip</l1>
          <l1>laser pointers</l1>
          <l1>lasagna</l1>
        </ul>

<!-- User Editable Region -->

      </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/117.0.0.0 Safari/537.36

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

Link to the challenge:

are you using l1 instead of li?

i’m using L in lower case

yeah, the L looks right. The second character looks like a number 1 and not an i. If you take a look at the section element just below your ‘editable region’ you should see what I mean.

1 Like

i see it now thank you so much ,i was using the number 1

1 Like