unordered list html types 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: bullet list html

<ul>
  <li>Eggs</li>
  <li>Pancakes</li>
  <li>Jelly</li>
</ul>

Tags:

Html Example