-
Notifications
You must be signed in to change notification settings - Fork 0
/
summer.html
95 lines (89 loc) · 3.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nantucket in the Summer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Nantucket in the Summer</h1>
<nav class="navbar">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="summer.html">Summer</a></li>
<li><a href="winter.html">Winter</a></li>
<li><a href="materialize.html">History</a></li>
</ul>
</nav>
</header>
<section>
<h2>Why Visit Nantucket in Summer?</h2>
<p>Nantucket, a picturesque island off the coast of Massachusetts, transforms into a summer paradise from June to September. Visitors enjoy the warm weather, stunning beaches, and vibrant local culture. The island's historic charm combined with its natural beauty creates a unique atmosphere perfect for relaxation and adventure.</p>
<p>Summer is the ideal time to explore the island’s scenic landscapes. From sandy beaches to quaint cobblestone streets, there’s something for everyone. Whether you prefer sunbathing, sailing, or indulging in fresh seafood, Nantucket has it all.</p>
</section>
<div class="image-gallery">
<img src="images/flowerspic.jpg" alt="Flowers" />
<img src="images/bluffwalk.JPG" alt="bluffwalk" />
<img src="images/beachpic.jpg" alt="Beach!" />
</div>
<section>
<h2>Activities and Attractions</h2>
<p>During the summer months, Nantucket offers a variety of activities. Click below to see some popular options!</p>
<button id="toggleActivities">Show/Hide Activities</button>
<div id="activities" style="display: none;">
<ul>
<li>Beach Day at Surfside Beach</li>
<li>Whale Watching Tours</li>
<li>Visiting the Whaling Museum</li>
<li>Exploring the Cisco Brewers</li>
<li>Biking the Island’s Scenic Trails</li>
</ul>
</section>
<section>
<h2>Dining Options</h2>
<p>Nantucket boasts a wide array of dining experiences. From casual seafood shacks to fine dining, the culinary scene is diverse. Some popular restaurants include:</p>
<table border="1">
<tr>
<th>Restaurant</th>
<th>Cuisine</th>
<th>Location</th>
</tr>
<tr>
<td>The Pearl</td>
<td>Seafood</td>
<td>89 Main St</td>
</tr>
<tr>
<td>Black-Eyed Susan's</td>
<td>American</td>
<td>10 India St</td>
</tr>
<tr>
<td>Cisco Brewers</td>
<td>Brewery</td>
<td>35 Wauwinet Rd</td>
</tr>
</table>
</section>
<aside>
<h2>Did You Know?</h2>
<p>Nantucket is known for its breathtaking sunsets. Many visitors recommend heading to Madaket Beach for the best view. The sky transforms into a canvas of colors, providing a perfect end to a summer day on the island.</p>
</aside>
<footer>
<p><strong>Explore Nantucket this summer and create unforgettable memories!</strong></p>
<p><em>For more information, visit the Nantucket Chamber of Commerce website.</em></p>
</footer>
<script>
document.getElementById('toggleActivities').addEventListener('click', function() {
var activities = document.getElementById('activities');
if (activities.style.display === 'none') {
activities.style.display = 'block';
} else {
activities.style.display = 'none';
}
});
</script>
</body>
</html>