forked from learn-the-web/html-semantics-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
44 lines (34 loc) · 673 Bytes
/
lists.html
File metadata and controls
44 lines (34 loc) · 673 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
43
44
<!DOCTYPE html>
<html lang="en-ca">
<head>
<meta charset="utf-8">
<title>Lists</title>
</head>
<body>
<h1>Lists</h1>
<h2>Unordered list</h2>
<ul>
<li>Earth</li>
<li>Venus</li>
<li>Jupiter</li>
<li>Saturn</li>
</ul>
<h2>Ordered list</h2>
<ol>
<li>Venus</li>
<li>Earth</li>
<li>Jupiter</li>
<li>Saturn</li>
</ol>
<h2>Description list</h2>
<dl>
<dt>Venus</dt>
<dd>The second planet orbiting the Sun.</dd>
<dt>Earth</dt>
<dd>The 3rd planet orbiting the Sun.</dd>
<dd>The planet we live on.</dd>
<dt>Jupiter</dt>
<dd>The biggest planet in the Solar System.</dd>
</dl>
</body>
</html>