-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSummer.html
47 lines (47 loc) · 1.65 KB
/
Summer.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Summer Flowers</title>
<meta charset="utf-8">
<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>Summer Flowers</h2>
<p><b>Yellow Lady Slipper facts</b></p>
<ul>
<li>4-24 inches tall</li>
<li>perennial</li>
<li>native plant</li>
<li>grows in wet, shaded decidous woods, swamps, and bogs</li>
<li>an orchid</li>
<li>offcial flower of Door County</li>
</ul>
<img src="yls.jpg" width="200" height="150" alt="Yellow Lady Slipper" id="floatright">
<footer role="contentinfo"> Copyright © 2016 Door County Wild Flowers<br>
</footer>
</main>
</div>
</body>
</html>