Answers for "make unordered list html"

8

how to get number list in html

<ol>
<li>Example</li>
<li>Example2</li>
<li>Example3</li>
</ol>
Posted by: Guest on January-18-2020
1

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>
Posted by: Guest on June-04-2020

Browse Popular Code Answers by Language