-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunorderedList.html
50 lines (50 loc) · 1.22 KB
/
unorderedList.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unordered List</title>
</head>
<body>
<h1>This is my HTML page</h1>
<p>Here is a example of unordered List</p>
<ul>
<li>Cold Coffee</li>
<li>Ice cream</li>
<li>Milk Shake</li>
<li>Back Tea</li>
<li>Green Tea</li>
</ul>
<p>here is a example of ordered List</p>
<ol>
<li>Cold Coffee</li>
<li>Ice cream</li>
<li>Milk Shake</li>
<li>Back Tea</li>
<li>Green Tea</li>
</ol>
<h2>Nested List</h2>
<p>here is a example of nested list in HTML</p>
<ol>
<li>Tea</li>
<ul>
<li>Back Tea</li>
<li>Green Tea</li>
<li>Low sugar tea</li>
<li>milk tea</li>
</ul>
<li>Ice cream</li>
<ul>
<li>Chocolate icecream</li>
<li>vanila</li>
<li>mango</li>
</ul>
<li>Cold Drinks</li>
<ul>
<li>Papsi</li>
<li>Cock</li>
<li>limca</li>
</ul>
</ol>
</body>
</html>