-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
35 lines (34 loc) · 810 Bytes
/
lists.html
File metadata and controls
35 lines (34 loc) · 810 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
<!DOCTYPE html>
<html>
<head>
<title>Lists in HTML</title>
<style>
body{
}
</style>
</head>
<body>
An ordered list:
<ol>
<li>first item</li>
<ul>
<li>unordered in ordered</li>
<li>yet another one</li>
</ul>
<li>second item</li>
<li>third item</li>
<li>fourth item</li>
</ol>
An unordered list:
<ul type = "square">
<li>first item</li>
<li>second item</li>
<ol>
<li>Order in unordered</li>
<li>part 2</li>
</ol>
<li>third item</li>
<li>fourth item</li>
</ul>
</body>
</html>