Help me HTML lesson 6

<html>
<body>
  <h1>CatPhotoApp</h1>
  <ul><main>
  <h2>Cat Photos</h2>
  <ul>
  <!-- TODO: Add link to cat photos -->
 <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.5005.115 Safari/537.36 OPR/88.0.4412.65

Challenge: Step 6

Link to the challenge:

This is just an example and you need to make your code like it

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

The <ul></ul> is the parent and the <li></li> is the children so they don’t start at the same column

The wrrong is to make it like this

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

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