Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:
Describe your issue in detail here.
I am on stage 5 and i cant do it. I need help.
Your code so far

<html>

<!-- User Editable Region -->

  <body>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>See more cat photos in our gallery.</p>
     <main><h1></main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.70

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

Link to the challenge:

The instructions need to be followed carefully:

adding a <main> opening tag before the h1 element,
and a </main> closing tag after the p element.

You will need to add the new main opening tag above the h1 line which is the one that says CatPhotoApp in it.

And the closing main tag should go below the p element which is the one that starts with<p>

Hi @JinJJ54 ,
Instructions clearly say to

  1. place <main> tag before <h1>
  2. place </main> tag after </p>

So you are wrapping <h1>, <h2> and <p> all together in <main>...</main> tag.