Learn HTML by Building a Cat Photo App - Step 6

Tell us what’s happening:

I placed two more spaces for indentation for all except for the main of course. I don’t seem to fully understand the instructions. That or maybe I’m just illiterate.

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <main>
        <h1>CatPhotoApp</h1>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
      <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/133.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 6

Welcome to the forum @mikedre_umbrete

You should not change the indentation on the line with your h2 element. Its opening tag should start 6 spaces over from the start of the line. You can restart the step to restore the original indentation.

It looks like you may have changed the indentation of the h1, h2, and comment elements.

Please remove the spaces before them until they align with the paragraph element.

Happy coding