HTML nested list

A simple example of a nested description list.
<!DOCTYPE html>
<html>
<head>
</head>    
<body>

<ul>
  <li>Milk</li>
  <li>Juice
    <ul>
      <li>Orange</li>
      <li>Raspberry</li>
    </ul>
  </li>
  <li>Tea</li>
</ul>

</body>
</html>

Responses

0 Replies