I need help with step 16 ASAP, please!

Tell us what’s happening:
Describe your issue in detail here.
The instruction says “You should only add one opening section tag. Please remove any extras.” I’ve removed it severally, but it’s still the same. What do I do?

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
   <section>
      <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/>
  </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/102.0.0.0 Safari/537.36

Challenge: Step 16

Link to the challenge:

I see a closing tag, but not an opening tag for the new section your trying to create. And the / is in the wrong location
<section></section>

1 Like

Thanks! I’ve corrected the mistake, but still failing the code :pensive:

Hint : place the new section tag below the existing section tag

I’m still failing it boss. However way I try.

Please reset the challenge and add a section tag below the existing one.
illustration

<section>
 old section
</section>
<section>
 new section
</section>
1 Like

Thanks man, finally done with the step. I really appreciate. Fr fr.

Thank you! It helped me too!

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