-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
71 lines (60 loc) · 1.37 KB
/
list.html
File metadata and controls
71 lines (60 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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 in HTML</title>
</head>
<body>
<h3>Ordered List</h3>
<ol type="i" start="5">
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
<hr>
<h3>Nested Ordered List</h3>
<ol type="I">
<li>One</li>
<li>Two
<ol type="i">
<li>1</li>
<li>2</li>
</ol>
</li>
<li>Three</li>
</ol>
<hr>
<h3>Unordered List</h3>
<ul style="list-style-type: circle;">
<li>A</li>
<li>B</li>
<li>C</li>
</ul>
<hr>
<h3>Nested Unordered List</h3>
<ul>
<li>Tea
<ul>
<li>Chai
<ul>
<li>Green Tea</li>
</ul>
</li>
<li>Sugar</li>
</ul>
</li>
<li>Coffie</li>
<li>Milk</li>
</ul>
<hr>
<h3>Discription list</h3>
<dl>
<dt>HTML</dt>
<dd>- Hyper Text Markup Language</dd>
<dt>CSS</dt>
<dd>- Cascading Style Sheet</dd>
</dl>
</body>
</html>