-
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) · 825 Bytes
/
list.html
File metadata and controls
40 lines (38 loc) · 825 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>List</title>
</head>
<body>
<h1>List</h1>
<h2>Ordered List</h2>
<ol>
<li>Banana</li>
<li>Oranges</li>
<li>Pawpaw</li>
<li>Mangoes</li>
<li>Water melon</li>
</ol>
<h2>Unordered List</h2>
<ul>
<li>Toyota</li>
<li>Range Rover</li>
<li>Vanguard</li>
<li>Rav4</li>
<li>Kadudu</li>
</ul>
<h3>Description</h3>
<dl>
<dt>Powerful car</dt>
<dd>Great engine</dd>
<dt>Prestigious car</dt>
<dd>For onstantantious trips</dd>
<dt>Onstantantious car</dt>
<dt>Have fun car</dt>
</body>
</dl>
</html>