Learn HTML by Building a Cat Photo App - Step 16. I couldn't get this instruction they telling me right here I get confused

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
<!--comment -->
          <a href="https://freecatphotoapp.com">
      <h2>elementName</h2>
       </a>
      <!-- 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>

    </main>
  </body>
</html>

Your mobile information:

SM-A045F - Android 13 - Android SDK 33

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

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Welcome to the fCC forum
The instruction says that you should nest you h2 element, comment, p element and a element in a section element. You have not done that. So add your opening section tag directly before you h2 element and your closing section tag after you last a element.

2 Likes

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