-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
63 lines (60 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Griffin Flowers">
<meta name="description" content="Welcome to Gröttnäs Lodge – your perfect mountain getaway.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gröttnäs Lodge</title>
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="wrapper">
<header class="hero">
<h1><a href="index.html">Gröttnäs Lodge</a></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Accommodations</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="intro">
<h2 class="intro-heading">Relax, Explore, Enjoy</h2>
<p>
Nestled in a beautiful valley in the Swedish Alps, our resort is the perfect escape from the mundane.
Dining options include an Italian restaurant, and ski-in bars on mountainside terraces. Other amenities
consist of an upscale spa, hot tubs, a gym and a climbing wall. Breakfast is available.
</p>
</section>
<section class="features">
<article>
<img src="images/swiss-chalet.jpg" alt="Charming Swiss chalet with mountain backdrop" width="600" height="300">
<h3 class="intro-heading">Amenities and Options for Everyone</h3>
<p>
Escape from everyday life and spend a few warm and relaxing days with us. Enjoy the refreshing mountain air.
Discover the village and the surrounding mountains on foot or with our bikes. Visit our spa or ski runs during
a winter visit, or take a guided hike during the warmer months. We offer something for everyone!
</p>
</article>
<article>
<img src="images/snowy-chalet.jpg" alt="Snow-covered chalet in the Alps" width="600" height="300">
<h3 class="intro-heading">An Escape For Any Time of Year</h3>
<p>
Whether you prefer a snowy mountain escape or a peaceful summer getaway surrounded by verdant mountains and valleys,
we have it all. You can hit the slopes and build a snowman in the winter, and you can head out for a hike,
picnics, and swimming in the spring and summer. Escape the ordinary with us!
</p>
</article>
</section>
</main>
<footer>
<p>© 2025 - Gröttnäs Lodge</p>
<p>This site is for educational purposes only</p>
</footer>
</div>
</body>
</html>