Learn HTML by Building a Cat Photo App - Step 19

Tell us what’s happening:

ive looked for help and im still struggling to see whats wrong, any help would be nice

Your code so far

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

<!-- User Editable Region -->

      <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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 OPR/116.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 19

most elements need a closing tag, section is one of them

Hey Buddy see how you’ve used closing h2 tag, the same should be use by section element too

Hope You Understand.

Ive done that too but it still doesnt work

Hey,
did you add the closing tag for your section element?

You have 2 section elements. One in which there is a closing tag, while the second section doesn’t. If you’ve added a closing tag for your second section and the problem still persists then try using a different browser. Hope it helps!