Learn HTML by Building a Cat Photo App - Step 6

Tell us what’s happening:

I can’t fully understand how to solve it. I don’t know what to put in the code.

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
     <p>See more cat photos in our gallery.</p>
    </main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 6

1 Like

You only added one space before the <p>element. It needs to be pressed twice to align with the header elements above and be indented. As an alternative, you could press the tab key once as well.

Also, the comment from the previous step is missing. Reset your code and try again, this time changing nothing but adding two spaces before the <p>element.

Nicolas