Learn HTML by Building a Cat Photo App - Step 18

HELP ME IN SECTION
It says =The existing h2, two p elements, and anchor (a) element should be between the opening and closing tags of the section element.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>

      <h2>Cat Photos</h2>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
      <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>
      <section>
       <h2>Section Title</h2>
       <p>section content...</p>
      </section>
    </main>
  </body>
</html>

Your mobile information:

SM-A235F - Android 14 - Android SDK 34

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

Link to the challenge:

Please 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!

It looks like you copy-pasted the example instead of " Take your h2, p, and anchor (a) elements and nest them in a section element."