Add two spaces in front of the three child elements of `main` so your HTML is more readable

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

the ul elements in the instructions are there to teach you how to indent elements, you dont have to create ul elements here, you have to just give two spaces to each of element inside main tag, they h2 comment and p tags

please send me the solution

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

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