-
Notifications
You must be signed in to change notification settings - Fork 0
/
neighborhood.html
52 lines (47 loc) · 2.28 KB
/
neighborhood.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Neighborhood Walk</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="#main-content" class="skip-content">Skip to Main Content</a> <!--Instructions 2-->
<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.jpg" alt="Brown Labradoodle sitting next to a statue.">
</nav>
<h1>Neighborhood Walks</h1>
</header>
<main id="main-content"> <!--Instructions 2-->
<div class="grid">
<img src="images/bend_in_the_road.png"
alt="A purple tree stands in contrast to the green leaved trees along a bend in the road" width="100">
<img src="images/pink_blossoms.png" alt="Small pink blossoms on an otherwise green leaved tree" width="100">
<img src="images/blooming_trees.png" alt="Brown labradoodle sitting in front of white and purple blooming trees"
width="100">
<img src="images/falling_petals.png" alt="A purple tulip tree that is beginning to shed its petals" width="100">
<img src="images/hanging_plants.png" alt="Red and green plants in a decorative hanging basket" width="100">
<img src="images/potted_plants.png" alt="A decorative planter with a variety of brightly colored plants "
width="100">
<img src="images/red_maple.png" alt="A small Japanese maple tree in front of a putple door" width="100">
<img src="images/tree_with_white_blooms.png"
alt="Brown labradoodle sitting in front of tree blooming with white petals" width="100">
<img src="images/tulips.png" alt="Bright red tulips in front of a garden light" width="100">
<img src="images/white_buds_on_tree.png" alt="Artsy shot of white blooms on a green tree with a dark background"
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>