I need to add ul and li tags but cant seem to get it right

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  
  <main>
    <ul>
 <li> <h2>Cat Photos</h2> </li>
  <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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 6

Link to the challenge:

you miss understood the instructions, the ul and li tags in the instruction are for an example to teach how to indent child elements inside their parent element. you don’t have to define ul and li tags here. you have to indent the three child elements of main tag by two spaces

1 Like

oh i got it thankyou

1 Like

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