How to create an unordered list (a list with the list items in bullets) in HTML? code example

Example 1: html nested list

<!-- Creat a list inside list -->

<ul>
  <li>Coffee</li>
  <li>Tea
    <!-- nested list -->
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

Example 2: html description list

<!-- Description lists --> 
<!-- They are list of terms with their corresponding definitions -->

<dt>HTML</dt>
	<dd>Stands for Hyper Text Markup Language</dd>

<dt>CSS</dt>
	<dd>Stands for Cascading Style Sheets</dd>

Tags:

Html Example