-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
42 lines (41 loc) · 919 Bytes
/
Copy pathlist.html
File metadata and controls
42 lines (41 loc) · 919 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List contents</title>
</head>
<body>
<!-- ul list -->
<ul>
<li>Maths</li>
<li>Physics</li>
<li>English</li>
</ul>
<!-- ol list -->
<ol type="A">
<li>Maths
<ul>
<li>chap-1</li>
<li>chap-2</li>
<li>chap-3</li>
</ul>
</li>
<li>Physics
<ol>
<li>chap-4</li>
<li>chap-5</li>
<li>chap-6</li>
</ol>
</li>
<li>English
<ul>
<li>chap-7</li>
<li>chap-8</li>
<li>chap-9</li>
</ul>
</li>
</ol>
</body>
</html>