Learn HTML by Building a Cat Photo App - Step 16

I am not sure what I am doing wrong here and can’t get past this step. It doesn’t seem to tell us what an element name is before head so I am very confused. Please help.
Describe your issue in detail here.

CatPhotoApp

Cat Photos

See more cat photos in our gallery.

A cute orange cat lying on its back. **Your code so far**
<html>

<!-- User Editable Region -->

  <body>
    <main>
      <h1>CatPhotoApp</h1>
       <elementName>
      <h2>Cat Photos</h2>
      <!-- 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>
          </elementName>
    </main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

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

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

Link to the challenge:

Hi @laurtay
The element name is <section>.
Replace your <elementName> with <section> & it should work.

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