-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
37 lines (35 loc) · 758 Bytes
/
list.html
File metadata and controls
37 lines (35 loc) · 758 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
<!DOCTYPE html>
<html>
<head>
<title>Lists</title>
</head>
<body>
<h2>Unordered List</h2>
<ul>
<li>pizza dought</li>
<li>tomato sauce</li>
<li>cheese</li>
<li>pepperoni
<ul>
<li>green peppers</li>
<li>onions</li>
</ul>
</li>
</ul>
<h2>Ordered List</h2>
<ol>
<li>eat breakfast</li>
<li>go to work</li>
<li>come home</li>
</ol>
<h2>Description List</h2>
<dl>
<dt>html</dt>
<dd>this adds structure to webpage</dd>
<dt>css</dt>
<dd>this adds style to webpage</dd>
<dt>javascript</dt>
<dd>this adds interactivity to webpage</dd>
</dl>
</body>
</html>