types of unordered list in html code example

Example 1: unordered list html

<ul>
  <li>Your item/tag goes here</li>
  <li>Your second item/tag goes here</li>
  <li>Your third item/tag goes here</li>
</ul>

Example 2: html unordered list

<ul>
  <li>Item One</li>
  <li>Item Two</li>
  <li>Item Three</li>
  <li>Item Four</li>
  <li>Item Five</li>
</ul>

Example 3: html ul types

#Type 1
<ul style="list-style-type:disk">
	<li>Disk</li>
</ul>
#Type 2
<ul style="list-style-type:circle">
	<li>Circle</li>
</ul>
#Type 3
<ul style="list-style-type:square">
	<li>Square</li>
</ul>

Example 4: html unordered list

<ul>
  <lh>ul Header</lh>
  <li>Item One</li>
  <li>Item Two</li>
  <li>Item Thre</li>
</ul>

Example 5: 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:

Css Example