-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha61.html
43 lines (36 loc) · 858 Bytes
/
a61.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>List Demo</title>
</head>
<body>
<ul>
<li>MP</li>
<ol>
<li>Jabalpur</li>
<li>Bhopal</li>
<li>Gwalior</li>
</ol>
<li>UP</li>
<ol>
<li>Kashi</li>
<li>Mathura</li>
<li>Ayodhya</li>
</ol>
<li>MH</li>
<ol>
<li>Nagpur</li>
<li>Mumbai</li>
<li>Pune</li>
<li>Nashik</li>
</ol>
<li>CG</li>
<ol>
<li>Raipur</li>
<li>Bhilaai</li>
<li>Durg</li>
<li>Korba</li>
</ol>
</ul>
</body>
</html>