-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12.html
More file actions
50 lines (39 loc) · 659 Bytes
/
12.html
File metadata and controls
50 lines (39 loc) · 659 Bytes
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
<head>
<title> js.bin </title>
</head>
<html>
<body>
Department
<ul>
<li> computer science</li>
<li> pol science</li>
<li>philosphy</li>
</ul>
Order list is that
<ol type = "A">
<li>math</li>
<li>physics</li>
<li>programming</li>
</ol>
Nesting of list
</ul>
<li> Pakistan</li>
<ul>
<li> Lahore</li>
<ul>
<li> lahore zoo</li>
<li>museum</li>
<li>mall road</li>
<li>universities</li>
</ul>
<li>languages</li>
<ul>
<li>java</li>
<li>html</li>
<li> many other</li>
</ul>
<li> Sargodha</li>
</ul>
</ul>
</body>
</html>