Learn HTML by Building a Cat Photo App - Step 19

Tell us what’s happening:

it says your section element should have a closing tag and idk how to fix it

Your code so far

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

<!-- User Editable Region -->

<main>
<section>
        <h2>Cat Photos</h2>
        <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
        <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 -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 19

Hello and welcome to the forum community @LelandB !

Good attempt.

To fix the issue, try adding a closing section tag as the one directly above your added opening section code.

Welcome to the forum @LelandB

  1. Please place a closing tag after the second section opening tag.
  2. Remove the main opening tag located between the h1 and section opening tags.

Happy coding