-
Notifications
You must be signed in to change notification settings - Fork 0
/
family.html
42 lines (39 loc) · 1.45 KB
/
family.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Family Page</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href = "index.html">About Me</a></li>
<li class="active"><a href = "family.html">My Family</a></li>
<li><a href = "random.html">Random Stuff</a></li>
<li><a href = "si.umich.edu">UMSI</a></li>
</ul>
</nav>
<h1>Family</h1>
</header>
<main>
<p>In 2016 I loaded my kids into the minivan and took them on a drive across the Northern midwest states. We went to
Wisconsin Dells, the Badlands, Mount Rushmore, Jewel Cave, and Custer State Park.<br></p>
<img src = "images/wisconsin_dells.jpg" width="25" alt = "Wisconsin dells">
<img src = "images/badlands.jpg" width="1000" alt = "Badlands">
<img src = "images/falling.jpg" width="25" alt = "Falling">
<br>
<img src = "images/rushmore.jpg" width="1000" alt = "Mount Rushmore">
<img src = "images/jewel_cave.JPG" width="25" alt = "Jewel Cave">
<p>I didn't plan for the fact that the Strugis Motorcycle rally would overlap with our trip. Many towns were closed to
through traffic and the lack of internet required that we use paper maps. Often.</p>
</main>
<footer>
<p>Colleen van Lent © 2024</p>
</footer>
</body>
</html>