Someone please help me step 6;

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
  <ul>
  <h2>Cat Photos</h2>
  <!-- TODO: Add link to cat photos -->
    </li>
    </li>
  </ul>
  <p>Click here to view more cat photos.</p>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 10; CPH1819) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Mobile Safari/537.36

Challenge: Step 6

Link to the challenge:

Hello there, welcome in the forum, you don’t have to create ul li elements. those are for teaching you how to indent elements within another. you have to indent h1 comment and p elements by two spaces in main tag

1 Like

Hello @ zwemanhein

The question is asking to indent two spaces in the codes inside the main part, instead of copying the example given.

This part in the question is for reference instead of copying.

<ul>
  <li> Child Element 1 </li>
  <li> Child Element 2 </li>
</ul>

What you need to do is something like this: (leaving previous codes unchanged and only changing the spacing)

<main>
  <p></p>
</main>

Hope this helps
Happy Coding :smiley:

1 Like

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