-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlistsdemo.html
56 lines (49 loc) · 1.38 KB
/
listsdemo.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
<!DOCTYPE html>
<title> Lists in HTML </title>
<head>
<style>
ul,li,ol{
font-size: 30px;
}
</style>
<body>
<ul>
Sports:
<li>Football</li>
<li>Baseball</li>
<li>Cricket</li>
</ul>
<ul style="list-style-type:square;">
Fruits:
<li>Banana</li>
<li>Apple</li>
<li>Grapes</li>
</ul>
<ul style="list-style-type:circle;">
Players
<li>Batsmen</li>
<li>Bowler</li>
<li>Fielder</li>
<li>WicketKeeper</li>
</ul>
<ol type="1">
Subjects:
<li>C Programming</li>
<li>OOP</li>
<li>Data Structures</li>
</ol>
<ol type="I">
Topics:
<li>Selection Statement</li>
<li>Control Structures</li>
<li>Functions</li>
</ol>
<ol type="a">
Employees:
<li>Programmer</li>
<li>Admin</li>
<li>Sales Manager</li>
</ol>
</body>
</head>
</html>