Learn HTML by Building a Cat Photo App - Step 16

Tell us what’s happening:i have no idea where i am going wrong

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <main>
      <h1>CatPhotoApp</h1>

      <section><h2>Cat Photos</h2></section>
      <section><!-- TODO: Add link to cat photos --></section>
      <section><p>See more<section><a target="_blank" href="https://freecatphotoapp.com">cat photos</a></section>in our gallery.</p></section>
      <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>

    </main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 16

Welcome to the community @shrade !

Good try! You are only to add one set of section tags to nest the h2, comment, p and a elements.

If you look closely, you will notice the line above the h2 is blank, awaiting a section tag.
The line below the a is also empty, awaiting the closing section tag.

I hope this helps you.

Happy coding!

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