We can add list items to a nested list in the same way we've been adding them to other lists.

Try adding list items to a nested list.

<html>
 <body>
  <ul>
   <li>Best comic book movies:
    <ol>
     <li>The Dark Knight</li> 
     <li>Spider-Man 2</li>
    </ol>
   </li>
  </ul>
 </body>
</html>
]]>

See that? Nested lists work just like any other list in HTML.

Make sure to place list item content between the <li> and </li> tags.