The code is not executing maybe i didnt get the instruction very well any help

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




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

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

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36

Challenge: Step 6

Link to the challenge:

delete the ul and li there say same like no use it

1 Like

The challenge wants the child elements of main indented two spaces something like this:

//Without indentation
<main>
<p>I am the first child</p>
<p>I am the Second child</p>
</main>
//with indentation (two spaces ) use the space-bar key,  press it twice in front of each child element.
<main>
  <p>I am the first child</p>
  <p>I am the Second child</p>
</main>

Thanks ill do that now

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