Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:

问题到底出在哪里?
目前的代码

Your code so far

<html>
  <body>

<!-- User Editable Region -->

   <main>
     <h1>Most important content of the document</h1>
      <p>Some more important content...</p>
  </main>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>

<!-- User Editable Region -->

    <!-- TODO: Add link to cat photos -->
    <p>See more cat photos in our gallery.</p>
    
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 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!

You have modified your code. Reset the challenge step and add only main opening and closing tags around the existing content of your page described in the instructions.

still incorrect. the system show this reason " Your main element’s closing tag should be below the p element. You have them in the wrong order."

Post your updated code here. Use three back ticks (```) in a separate line below and above your code block to preview it here.

<main>
     <h1>Most important content of the document</h1>
     <p>Some more important content... </p>
 </main>

I said, don’t make new h1 and p elements. Reset your challenge step and add main opening and closing tags around existing content.

<h1>Most important content of the document</h1>
     <p>Some more important content... </p>

That above code is not asked in the challenge instructions to add.