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>
<main><p>Click here to view more cat photos.</p>
      <h1>CatPhotoApp</h1>
      <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/108.0.0.0 Safari/537.36

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

Link to the challenge:

:balloon: Hi, welcome to the forum!
We see you have posted some code but did you have a question?

yes i dont know how to pass this step 6

What is the difficulty you are having and hint?

i was told to use the space bar on my keyboard to make this code indented properly.

Click here to view more cat photos.

CatPhotoApp

Cat Photos

Click here to view more cat photos.

Click here to view more cat photos.

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

As part of best practice, we indent html code by adding two spaces before elements for better readability.

<html>
  <body>
    <main>
    </main>
  </body>
</html>

do same by adding two spaces before the p element

Thank you. It worked