-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSpring.html
60 lines (49 loc) · 2.06 KB
/
Spring.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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Spring Flowers</title>
<link rel="stylesheet" type="text/css" href="mywildflower.css">
</head>
<body>
<div id="container">
<header role="banner">
<span><a href="#content">Skip to Content</a></span>
<h1>Door County Wildflowers</h1>
</header>
<nav role="navigation">
<ul>
<li><a href="myindex.html">Home</a></li>
<li><a href="Spring.html">Spring</a></li>
<li><a href="Summer.html">Summer</a></li>
</ul>
<img src="plsthumb.jpg" width="100" height="100" alt="Showy Lady Slipper">
</nav>
<aside role="complementary">
<h3>The Ridges</h3>
<p class="news">The Ridges Nature Sanctuary offers wild orchid hikes during the summer months. For more info, visit <a href=
"http://www.ridgesanctuary.org">The Ridges</a>.</p>
<h3>Newport State Park</h3>
<p class="news">The <a href="http://www.newportwildernesssociety.org">
Newport Wilderness Society</a> sponsors free meadow hikes at 9am every Saturday. Stop by the park office to register.</p>
</aside>
<main role="main" id="content">
<h2>Spring Flowers</h2>
<p><b>Trillium Facts</b></p>
<ul>
<li>8-18 inches tall</li>
<li>perennial</li>
<li>native plant</li>
<li>grows in rich, moist decidous woodlands</li>
<li>white flowers turn pink with age</li>
<li>fruit is a single red berry</li>
<li>protected flower species</li>
</ul>
<img src="trillium.jpg" width="200" height="150" alt="Trillium" id="floatright">
<footer role="contentinfo"> Copyright © 2016 Door County Wild Flowers<br>
</footer>
</main>
</div>
</body>
</html>
</div>