unordered list types in html code example
Example 1: html unordered list
<ul>
<lh>ul Header</lh>
<li>Item One</li>
<li>Item Two</li>
<li>Item Thre</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>