HTML - Unordered List
Simple unordered list code
<ul> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
unordered list style square code
<ul style="list-style-type:square"> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
unordered list style disc code
<ul style="list-style-type:disc"> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
unordered list style circle code
<ul style="list-style-type:circle"> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
unordered list style decimal code
<ul style="list-style-type:decimal"> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
unordered list style lower-alpha code
<ul style="list-style-type:lower-alpha"> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |
unordered list style upper-alpha code
<ul style="list-style-type:upper-alpha"> <li>list item </li> <li>another list item</li> </ul> |
This is how it will appear in a browser |
|
View above example output in a new browser window |