Stuck at step 15 cat photo app

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
   <section><h2>Cat Photos</h2></section>
   <section><!-- TODO: Add link to cat photos --></section>
   <section><p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p></section>
    <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></section>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 15

Link to the challenge:

You nested each element in its own pair of section tags, that’s not what the problem statement describes. Take all the elements in the main part and nest them in one pair of section tags.

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