Nested HTML Lists | How to Make Nested list in HTML

Share:


List can be nested (lists inside lists):

Example
Input | Example

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>
OutPut | Result
  • Coffee
  • Tea
    • Black tea
    • Green tea
  • Milk

Note: List items can contain new list, and other HTML elements, like images and links, etc.


No comments

Sponsored

Search This Blog