-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
33 lines (31 loc) · 925 Bytes
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>My Favorite Things</h1>
<img src="Jesse and dog.png" alt="Jesse Thom" width=100>
<h2>My Top Movies</h2>
<ol>
<li>Old School</li>
<li>Something About Mary</li>
<li>The Departed</li>
<li>Fight Club</li>
<li>Super Troopers</li>
</ol>
<h2>My Favorite Places to Visit</h2>
<ul>
<li>White Mountains, NH</li>
<li>Cape Cod, MA</li>
<li>Any ski mountain</li>
<li>A pub</li>
<li>My recliner</li>
</ul>
<a href="https://www.linkedin.com/in/jesse-thom" target="_blank">LinkedIn</a>
</body>
</html>