-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexploring.html
More file actions
124 lines (109 loc) · 6.58 KB
/
Copy pathexploring.html
File metadata and controls
124 lines (109 loc) · 6.58 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pull up those hiking boots and lets go</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Hiking, Bird Watching, and nature trails are all within minutes of the Lake House. We'll help arrange your outing">
<link rel="stylesheet" href="site.css">
<link rel="apple-touch-icon" sizes="180x180" href="media/media-apple-touch-icon.jpg">
<link rel="icon" type="image/jpg" sizes="32x32" href="media/media-favicon-32x32.jpg">
<link rel="icon" type="image/jpg" sizes="16x16" href="media/media-favicon-16x16.jpg">
<script src="https://kit.fontawesome.com/d17344da85.js" crossorigin="anonymous"></script>
<script src="scripts.js"></script>
</head>
<body id="Exploring_pg">
<header>
<nav id="nav-overlay" style="display:none;" >
<ul class="menu-overlay">
<li><a href="about-us.html"><i class="fa-solid fa-timeline"></i> About Us</a></li>
<li><a href="ammenities.html"><i class="fa-solid fa-utensils"></i> Ammenities</a></li>
<li><a href="accomodations.html"><i class="fa-solid fa-house"></i> Accomodations</a></li>
</ul>
</nav>
<nav class="nav-main">
<div class="grid-main">
<div class="brand-container">
<span><a href="index.html">MLH</a></span>
</div>
<div>
<ul class="menu-main">
<li class="desktop"><a href="about-us.html"><i class="fa-solid fa-timeline"></i> About Us</a></li>
<li class="desktop active"><a href="ammenities.html"><i class="fa-solid fa-utensils"></i> Ammenities</a></li>
<li class="desktop"><a href="accomodations.html"><i class="fa-solid fa-house"></i> Accomodations</a></li>
<li><a href="reserve.html"><i class="fa-solid fa-phone"></i> Call</a></li>
<li class="btn"><a href="reserve.html"><i class="fa-solid fa-calendar-days"></i> Book <span class="tablet">Now</span></a></li>
</ul>
</div>
</div>
<div class="hamb-container">
<input class="side-menu" type="checkbox" id="side-menu">
<label onclick="toggleMenu()" class="hamb" for="side-menu"><span class="hamb-line"></span></label>
</div>
</nav>
<div class="band band-light">
<div class="content-container">
<div class="grid-container-1">
<section>
<h1>Exploring The Outdoors</h1>
<p>Exploring the natural wonders around Lake George and the Adirondacks offers guests of Midler Lake House an immersive
adventure into one of America’s most breathtaking regions.
</p>
<hr>
<p>Just steps from our historic Grand white Estate, the Adirondack Mountains beckon with miles of scenic hiking trails,
ranging from gentle lakeside paths to challenging summit treks, showcasing vibrant wildflowers in spring and fiery foliage in fall.
Birdwatchers will delight in spotting native species like loons and bald eagles, with guided tours available to prime viewing spots.
</p>
<p>Nature trips, organized by our Property Manager, Sidney Stevens, include curated excursions to nearby state parks, hidden waterfalls, and serene forests,
perfect for family get-togethers, corporate retreats seeking inspiration, or romantic escapes for honeymooners and anniversary celebrants.
</p>
<p>Whether you’re hiking to a panoramic vista, observing wildlife, or strolling through pristine wilderness,
the Adirondacks provide an unforgettable backdrop for exploration.
</p>
</section>
<img src="media/media-exploring01.png" height="150" alt="A couple hiking atop Block mountain with a view of the lake">
</div>
</div>
</div>
</header>
<main>
</main>
<footer>
<nav class="top">
<div class="main">
<ul class="bulleted">
<li class="header"><a href="ammenities.html">Ammenities</a></li>
<li><a href="boating.html">Boating</a></li>
<li><a href="exploring.html">Exploring</a></li>
<li><a href="shopping.html">Shopping</a></li>
<li><a href="sporting.html">Sporting</a></li>
</ul>
<ul class="bulleted">
<li class="header"><a href="about-us.html">About</a></li>
<li><a href="our-staff.html">Our Staff</a></li>
<li><a href="find-us.html">Find Us</a></li>
<li><a href="contact-us.html">Contact</a></li>
<li><a href="reserve.html">Book Now!</a></li>
</ul>
<ul class="bulleted">
<li class="header"><a href="accomodations.html">Accomodations</a></li>
<li><a href="main-house.html">Main House</a></li>
<li><a href="boat-house.html">Boat House</a></li>
<li><a href="cottage.html">Cottage</a></li>
<li><a href="dining.html">Dining</a></li>
</ul>
</div>
<div class="social">
<ul >
<li><a href="https://www.facebook.com"><img src="media/media-logo-facebook.png" alt="Facebook Logo" ></a></li>
<li><a href="https://www.instagram.com"><img src="media/media-logo-instagram.png" alt="Instagram Logo" ></a></li>
<li><a href="https://www.youtube.com"><img src="media/media-logo-youtube.png" alt="YouTube Logo" ></a></li>
</ul>
</div>
</nav>
<nav class="bottom">
<span class="copyright">Copyright © 2025</span><a href="terms.html">Terms</a><a href="privacy.html">Privacy</a>
</nav>
</footer>
</body>
</html>