Learn HTML by Building a Cat Photo App - Step 6

Tell us what’s happening:

im dumb help i cant i cant i cant i cant i cant help i cant

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <main>
      
      
      <h1>CatPhotoApp</h1>
      <h2> Cat Photos </h2>
     
    <p> Everyone loves cute cats online! 
    
    </p>
    </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/137.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 6

Welcome to the forum :wave:

You need to fix some indentation. Reset the step and try again.

The code indentation starts similar to this:

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

You need to make the indentation like this:

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

Let us know if you have any questions.