Need help with html step 6

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>
  <!-- TODO: Add link to cat photos -->
  </li>
  <li>
  <p>Click here to view more cat photos.</p>
  </li>
 </ul>

  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 6

Link to the challenge:

child elements are the elements contained in the “main” element: the h2 element, the p element and the comment, you have to add 2 spaces in front of each one of them:

ps: the closing tag (/main) stays where it is, don’t add any space in front of it

…?


The challenge doesn’t want you to paste in pieces of the example code. You should only add 2 spaces before your h2, comment, and p elements.

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