Learn HTML by Building a Cat Photo App - Step 6

Tell us what’s happening:

It’s asking me to add space, but I’m not sure if it’s asking for a
or just a regular space. I’ve tried both, but nothing is working. I’m not sure what to do.

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
          <p>See more cat photos in our gallery.</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/129.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 6

hi and welcome to the forum.

This step is trying to teach you about indentation in code.

The goal is to indent the p element exactly as many times as needed to make it lined up with elements above it (that is it should be indented 2 spaces from the location of its parent element which is the main element)

Example of indentation for your reference:
This is incorrect indentation:

<main>
<p>This is not indented</p>
<h2>This is still not indented</h2>
<a href="www.google.com">This is also not indented</a>
</main>

Now to correct this indentation, I will push each line within the main element exactly 2 spaces to the right:

<main>
  <p>This is indented</p>
  <h2>This is also indented</h2>
  <a href="www.google.com">This is indented correctly too</a>
</main>