Learn HTML by Building a Cat Photo App - Step 17

Tell us what’s happening:

My section element needs an opening tag. I have no idea what this means.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>

<!-- User Editable Region -->

      <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>
    <h2>Cat lists.</h2>
     </section>
      

<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 17

hi there!

Please click the Reset button on the page to restore the original code as you added an extra h2 element that was not requested.

After that, you will need to add a new section element below the current section element.
So that means you should find the closing section tag in the editor which looks like this: </section> and add a blank line underneath that then add your new section element there.
Make sure to add an opening tag and a closing tag.

This is an opening tag.

I can see from the code that is after Cat lists that you have only a closing section tag. As mentioned by JeremyLT you need to have another opening tag.

The code you did above “cat lists” is correct.#

Have a look at that and you will see what it means.

Good luck.