-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavorite-things.html
67 lines (64 loc) · 1.81 KB
/
favorite-things.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Michael's favorite things</title>
</head>
<body>
<h1>My favorite things</h1>
<h2>There are a few of my favorite things</h2>
<h3>People</h3>
<p>Here are some of my favorite <em>people</em>!</p>
<ul>
<li>
My brother
<a href="http://www.example.com/christopher.html">
<strong>Casey</strong>
<img src="img/christopher.jpeg" alt="A photo of Christopher.">
</a>
</li>
<br>
<li>My mom and dad:
<br>
<br>
<ul>
<li>
<a href="http://www.example.com/steve.html">
<strong>Steve</strong>
<img src="img/steve.jpeg" alt="A photo of Steve.">
</a>
</li>
<li>
<a href="http://www.example.com/arol.html">
<strong>Arol</strong>
<img src="img/arol.jpeg" alt="A photo of Arol."> </a>
</li>
</ul>
</li>
<li>
<a href="http://www.example.com/bob.html">
My friend <strong>Bob</strong>
<img src="img/bob.jpeg" alt="A photo of Bob." width="300" height="300">
</a>
</li>
<li>
<a href="http://www.example.com/bill.html">
My friend <strong>Bill</strong>
<img src="img/bill.jpeg" alt="A photo of Bill.">
</a>
</li>
</ul>
<h1>ICE CREAM!</h1>
<h3>Flavors of ice cream</h3>
<p>these are my 3 faves, in order:</p>
<ol>
<li>Pistachio</li>
<li>Malted milk chocolate</li>
<li>black licorise (really!)</li>
</ol>
<a href="http://shugssodafountain.com">Suge's</a>
<br>
<a href="./my-first-webpage.html">Check out my website here</a>
<p>thanks for reading about me.</p>
</body>
</html>