-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlists.html
31 lines (27 loc) · 944 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Lists</title>
</head>
<body>
<p>This exercise is about making lists</p>
<p>Here's what i like about lists:</p>
<ul>
<li>They're useful for displaying lists of stuff</li>
<li>That's about it</li>
<li>I'm gunna put another list item here because doing things in threes is cool</li>
</ul>
<p>When you make a list, do it in this order:</p>
<ol>
<li>Decide if it's an ordered list or not</li>
<li>If it's not an ordered list, use the ul tag, otherwise use the ol tag</li>
<ul>
<li>Use li tags nested in the list for your list items</li>
</ul>
<ol>
<li>Curveball! You can nest lists inside each other</li>
</ol>
<li>You've got this, I believe in you!</li>
</ol>
</body>
</html>