Learn HTML by Building a Cat Photo App - Step 6

I double space and it’s not working. I had issue with this previously but haven’t been able to figure it out. Can someone help please!

Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.</p>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-G973U) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 6

Link to the challenge:

Hi there,

You have removed the indentation instead of adding indentation.

The lines inside the main element should be indented two spaces to the right.

Reset the code and try again.

1 Like
<body>
  <main>
      <h1>...
      .
      .
  </main>
.
.
.

Do not indent the ‘main’ element.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.