-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion5.html
More file actions
43 lines (43 loc) · 1.36 KB
/
Question5.html
File metadata and controls
43 lines (43 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Places</title>
</head>
<body>
<ol>
<li style="list-style: lower-alpha;">Bagmati Province</li>
<ol>
<li style="list-style: lower-roman;">Kathmandu</li>
<ul>
<li style="list-style-type: disc;">Basantapur</li>
<li style="list-style-type: disc;">Sundhara</li>
</ul>
<li style="list-style: lower-roman;">Bhaktapur</li>
<ul>
<li style="list-style-type: disc;">Siddha pokhari</li>
<li style="list-style-type: disc;">Thimi</li>
</ul>
<li style="list-style: lower-roman;">Lalitpur</li>
<ul>
<li style="list-style-type: disc;">Patan</li>
<ul>
<li>Durbar</li>
<li>Krishna Mandir</li>
</ul>
<li style="list-style-type: disc;">Jawalakhel</li>
</ul>
</ol>
<br>
<li style="list-style: lower-alpha;">Gandaki Province</li>
<ol>
<li style="list-style: lower-roman;">Pokhara</li>
<ul>
<li style="list-style-type: disc;">Phewa Lake</li>
<li style="list-style-type: disc;">Lakeside</li>
</ul>
</ol>
</ol>
</body>
</html>