Learn HTML by Building a Cat Photo App - Step 6

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

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/111.0.0.0 Safari/537.36

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

Link to the challenge:

Welcome to our community!

The h1, h2, comment and p elements should be aligned from the left side, at a distance of two spaces more to the right from the main element.

I would restart the step to get the original HTML formatting back. The only change you want to make is to the line with the p element. Do not make changes to any other lines.

the < p > tag should be aligned in a straight line with the < h1 > and < h2 > tag
< h1 > CatPhotoApp< /h1 >
< h2 >Cat Photos< /h2 >
< p >See more cat photos in our gallery.< p >

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