I have problem with html spacing

Tell us what’s happening:
Describe your issue in detail here.

Your h2 element should be below the main element’s opening tag and its opening tag should start 6 spaces over from the start of the line.
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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 6

Link to the challenge:

Hi

The hint is telling you that there should be six spaces between the start of the line and the opening tag of your h2 element.

It looks as though, in your code, there are something like ten or twelve spaces between the start of the line and the opening tag of your h2 element.

Just count six spaces from the start of the line - that’s where your h2 element should start.
The comment and the p element should also start six spaces from the start of the line.

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