-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
40 lines (38 loc) · 869 Bytes
/
list.html
File metadata and controls
40 lines (38 loc) · 869 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
<html>
<head>
<title>List</title>
</head>
<body>
<h1>List</h1>
<h2>Ordered list</h2>
<!--
ol -> Ordred list
li -> List
type=> a,A,I,i,1
-->
<ol type="I">
<li>Tea</li>
<li>Coffee</li>
<ol type="1">
<li>Cold Coffee</li>
<li>Hot Coffee</li>
</ol>
<li>Milk</li>
<li>Water</li>
</ol>
<h2>Unordred List</h2>
<ul>
<li>Tea</li>
<li>Coffee</li>
<ul>
<li>Cold Coffee</li>
<ul>
<li>Americano</li>
</ul>
<li>Hot Coffee</li>
</ul>
<li>Milk</li>
<li>Water</li>
</ul>
</body>
</html>