-
Notifications
You must be signed in to change notification settings - Fork 0
/
listcss.html
50 lines (49 loc) · 886 Bytes
/
listcss.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<style>
ul.a{
list-style-type: circle;
background:#FF6787;
list-style-position: outside;
}
ul.b{
list-style-type: square;
list-style-position:inside;
}
ol.c{
list-style-type: upper-roman;
list-style-position:outside;
}
ol.d{
list-style-type: lower-alpha;
padding:1px;
}
</style>
</head>
<body>
<h2>The list style properties in CSS </h2>
<p>UNORDERED LIST</p>
<ul class="a">
<li>Coffee</li>
<li>Tea</li>
<li>Coldrink</li>
</ul>
<ul class="b">
<li>Mango</li>
<li>Apple</li>
<li>Grapes</li>
</ul>
<p>ORDERED LIST</p>
<ol class="c">
<li>Chrome</li>
<li>Mozilla</li>
<li>Firefox</li>
</ol>
<ol class= "d">
<li>Agra</li>
<li>Ajmer</li>
<li>Jaipur</li>
</ol>
</body>
</html>