Answers for "what is ul tag 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
0

what is ul stands for in html

<ul> stands for 
	<!-- Unorderd list -->
<ol> stands for
	<!-- Orderd list -->
Posted by: Guest on October-31-2021

Browse Popular Code Answers by Language