Learn HTML by Building a Cat Photo App - Step 18

Tell us what’s happening:

Its told me to put the existing h2,2 p and anchor (a) element should be between the opening and closing tags of the section element

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <main>
      <h1>CatPhotoApp</h1>
        <section>
      <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>
        <h2>More cats</h2> <p>More Pictures of Cats...<a href="https://freecatphotoapp.com">Click Here</a></p>.            
        </section>
 </main>

<!-- User Editable Region -->

  </body>
</html>  

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 18

Hi @chim.jeremiah and welcome to our community!

You have created additional elements here which are not required:

You should nest the existing h2, p and a elements within a section element, without creating any additional elements.

Hit the Reset button to restore the starting code from this step and then add the section element tags, where specified, and nothing else.