Answers for "ul type attribute in html"

2

ul attributes in html

<ul style="list-style-type:circle"></ul>
<ul style="list-style-type:disc"></ul>
<ul style="list-style-type:square"></ul>
Posted by: Guest on May-30-2021
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