Learn HTML by Building a Cat Photo App - Step 17

*Tell us what’s happening:
I’ve been stuck here for a while and I don’t know what to do

Your code so far

<html>
  <body>
    <main>

<!-- User Editable Region -->

      <section>
        <section>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</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/118.0.0.0 Safari/537.36

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

Link to the challenge:

Hello @Francis03
The section element should not be nested in the existing section element, it should come after it.

1 Like

Please I’m new to HTML and I’ve tried all I can but to no avail. When you say after it what exactly do you mean ?

Got it now, Put it in a different place

It should come after the last section closing tag.

1 Like