Learn HTML by Building a Cat Photo App - Step 17

Tell us what’s happening:
Describe your issue in detail here.
Help me! I’m stuck

Your code so far

<html>

<!-- User Editable Region -->

  <body>
    <main>
      <h1>CatPhotoApp</h1>
       <section>
        <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>
    </main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; U; Android 10; M2006C3MG Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/109.0.5414.85 Mobile Safari/537.36 OPR/66.2.2254.64268

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

Link to the challenge:

What you did so far is nest the first section element inside another section element. Which would be great if they had asked for that.
Instead they said to add a new section element -below- the existing one.
That means they were expecting you to add the opening tag for the section element below the closing tag for the existing one.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.