-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-style-types.html
101 lines (100 loc) · 2.63 KB
/
list-style-types.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<html>
<head>
<title>List Style Types</title>
<style>
#no-style{
list-style-type:none;
}
#disc-style{
list-style-type:disc;
}
#circle-style{
list-style-type:circle;
}
#square-style{
list-style-type:square;
}
#decimal-style{
list-style-type:decimal;
}
#decimal-leading-zero-style{
list-style-type:decimal-leading-zero;
}
#lower-roman-style{
list-style-type:lower-roman;
}
#upper-roman-style{
list-style-type:upper-roman;
}
#lower-alpha-style{
list-style-type:lower-alpha;
}
#upper-alpha-style{
list-style-type:upper-alpha;
}
</style>
</head>
<body>
<h1>List Style Types</h1>
<h2>No style</h2>
<ul id="no-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ul>
<h2>Disc style</h2>
<ul id="disc-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ul>
<h2>circle style</h2>
<ul id="circle-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ul>
<h2>Square style</h2>
<ul id="square-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ul>
<h2>decimal style</h2>
<ol id="decimal-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ol>
<h2>decimal leading zero style</h2>
<ol id="decimal-leading-zero-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ol>
<h2>Lower alpha style</h2>
<ol id="lower-alpha-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ol>
<h2>Upper alpha style</h2>
<ol id="upper-alpha-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ol>
<h2>Lower roman style</h2>
<ol id="lower-roman-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ol>
<h2>Upper roman style</h2>
<ol id="upper-romen-style">
<li>Html</li>
<li>Css</li>
<li>Javascript</li>
</ol>
</body>
</html>