-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparks.html
More file actions
54 lines (45 loc) · 1.97 KB
/
parks.html
File metadata and controls
54 lines (45 loc) · 1.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Neighborhood Walk</title>
<!-- You will need to link to the CSS file -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="#main">Skip to main content</a>
<header>
<nav>
<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>
<img src="images/BaconGallupPark.jpeg" width="200" alt="Brown Labradoodle sitting next to a statue.">
</nav>
<h1>Michigan Parks</h1>
</header>
<main id="main">
<div class="flex">
<img src="images/bacon_in_the_woods.png" alt="brown labradoodle sitting near a stream in a wooded setting"
width="100">
<img src="images/bacon_near_the_fort.png"
alt="brown labradoodle posing in front of a makeshift fort made of branches" width="100">
<img src="images/downed_tree.png" alt="a downed tree crossign a stream" width="100">
<img src="images/fort_in_woods.png" alt="a small fort made of branches" width="100">
<img src="images/huron_river_cascades.jpeg" alt=" two people on a kayak approaching some small rapids"
width="100">
<img src="images/lake_view.jpeg" alt="a glimpse of a child running along a lake obscured by branches" width="100">
<img src="images/mist_over_huron_river.jpeg" alt="the mist rising over a river in the morning" width="100">
<img src="images/munising.jpeg" alt="small waterfall" width="100">
<img src="images/reflected_tree.jpeg" alt="reflection of a lake and trees" width="100">
</div>
</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.
Students are invited to make changes.</p>
</footer>
</body>
</html>