-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.76 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Springtime In Michigan</title>
<!-- You will need to link to the CSS file -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="skip-to-main">
<a class="skip-to-main-link" href="#main">Skip to Main Content</a>
</div>
<header>
<nav style="width: 75%;">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="neighborhood.html">Neighborhood Walks</a></li>
<li><a href="parks.html">Walks in the Park</a></li>
</ul>
</nav>
<img src="images/bend_in_the_road.png" width="200" alt="Brown Labradoodle sitting next to a statue.">
<h1 style="width: 100%;">Springtime in Michigan</h1>
</header>
<main id="main">
<p>Springtime in <a href="https://www.michigan.org/city/ann-arbor">Ann Arbor</a> is a beautiful time. Even though
it can be chilly at times, it is nice to walk my dog Bacon. This site includes some pictures I have taken on
these walks. </p>
<p>Sometimes we walk around the neighborhood, other times we make it to the woods. Ann Arbor also has some
beautiful lakes and rivers including the <a
href="https://www.annarbor.org/things-to-do/recreation-outdoors/huron-river/">Huron River Watertrail</a> and
the <a href="https://www.a2gov.org/departments/Parks-Recreation/parks-places/argo/pages/default.aspx">Argo Park
Cascades</a>.</p>
</main>
<footer>
<p>This page was originally created by Colleen van Lent for the <a
href="https://www.coursera.org/specializations/web-design"> Web Design for Everybody</a> Specialization.
Specialization. Students are invited to make changes.</p>
</footer>
</body>
</html>