-
Notifications
You must be signed in to change notification settings - Fork 0
/
lists.html
44 lines (43 loc) · 1.26 KB
/
lists.html
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-us">
<head>
<link rel = "stylesheet" href = "styles.css">
</head>
<title>Lists</title>
<h1 id = "title">Lists</h1>
<ul id = "navigationBar">
<li><a href = "home.html">Home</a></li>
<li><a href = "lists.html">Lists</a></li>
<li><a href = "canvas.html">Canvas</a></li>
<li><a href = "contacts.html">Contact</a></li>
</ul>
<br>
<h2>This is a description list:</h2>
<dl id = "foods">
<dt>Beans</dt>
<dd>- yummy yummy</dd>
<dt>Guacamole</dt>
<dd>- icky gross</dd>
<dt>Sour Cream</dt>
<dd>- yum delicious</dd>
<dt>Egg Yolk</dt>
<dd>- disgusting</dd>
</dl>
<h2>This is an unordered list:</h2>
<ul id = "gravy">
<li>Juice</li>
<li>Sauce</li>
<ul id = "sauces">
<li>Teriyaki</li>
<li>Soy</li>
</ul>
<li>Little bit of dressing</li>
</ul>
<h2>This is an ordered list:</h2>
<ol id = "routine" type = "I" start = "2">
<li>Wake up</li>
<li>Code</li>
<li>Eat</li>
<li>Sleep</li>
</ol><br>
</html>