Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:

i dont know what they want me to put as my main element

Your code so far

<html>
  <body>

<!-- User Editable Region -->

  <World of animals/>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>See more cat photos in our gallery.</p>
    <thank you/>

<!-- 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/127.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 5

Hi there!

Read the instructions again. They want you to:
Identify the main section of this page by adding a <main> opening tag before the h1 element, and a </main> closing tag after the p element.

You have added World of animals as opening tag and thank you as closing tag, instead of adding main opening and closing tags.
Edit: remember, opening tag didn’t have any slash \ / and closing tag need this / slash before element name.