I couldn't find answer for step 6 please anyone help for me

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <ul>
      <li> child element 1</li>
      <li> child element 2 </li>
      </ul>
  <!-- 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 6

Link to the challenge:

Welcome to the forum!

This was just an example, you don’t need it in your solution.
This step is about indentation.
Indentation - it’s basically shifting some lines of your code to the right.
Take a look

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

In the above I indented this:

  <body>
  </body>

I just added 2 spaces to the each of these lines.
We are doing this to make code more readable

1 Like

Thanks for your explanation now it’s clear🙂

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