-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
56 lines (50 loc) · 1.17 KB
/
list.html
File metadata and controls
56 lines (50 loc) · 1.17 KB
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ordered List Example </title>
<style type="text/css">
h1
{
font-size: 50px: ;
text-decoration: ;
}
h2
{
color: #903f4e;
}
</style>
</head>
<body bgcolor="Pink">
<marquee><h1><u>Ordered Lists Types</u></h1></marquee>
<h2>Default</h2>
<ol>
<li>Orange</li>
<li>Mango</li>
<li>Banana</li>
<li>Apple</li>
</ol>
<h2>Lower Alphabets</h2>
<ol type="a">
<li>Red</li>
<li>Blue</li>
<li>Green</li>
<li>Yellow</li>
</ol>
<h2>Upper Alphabets</h2>
<ol type="A">
<li>Food</li>
<li>House</li>
<li>Water</li>
<li>Electricity</li>
<li>Transportation</li>
</ol>
<h2>Lower Roman</h2>
<ol type="i">
<li>CEO</li>
<li>Manager</li>
<li>Supervisors</li>
<li>Workers</li>
</ol>
</body>
</html>