Answers for "how to have nested lists html"

1

nested list html

<ul>
  <!-- main item list -->
  <li>Coffee</li>
  <li>Tea
    <ul>
      <!-- items nested under tea -->
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>
Posted by: Guest on April-02-2020

Code answers related to "how to have nested lists html"

Browse Popular Code Answers by Language