Learn HTML by Building a Cat Photo App - Step 20

Tell us what’s happening:

I don’t understand what it means by add ul element after the h3 element with the things cats love.

Your code so far

<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>

<!-- User Editable Region -->

        <h2>Cat Lists</h2>
        <h3>Things cats love:<ul></h3>

        
        
        

<!-- User Editable Region -->

      </section>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 20

move the ul element opening tag that you have here so it is on its own line below the h3 element
then don’t forget to close the ul element by adding a closing tag too.

1 Like

Hey Buddy See, You are instructed to put ul tag

First remove the ul tag from in between h3

2nd Create Your ul element as I’ve created h1 below.

<h1></h1>

Hope You Understand.