-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththings-to-do.html
170 lines (153 loc) · 8.14 KB
/
things-to-do.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta name='viewport' content='width=device-width'>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet">
<meta charset="utf-8">
<title>Martian Splendour Resort | Things To Do</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav id="main-menu" class="flex space-between sm-column relative">
<div id="logo" class="flex center-y">
<a href="index.html">
<img src="images/logo-5.png" alt="Resort company logo">
</a>
</div>
<div class="flex center-y sm-column bg-primary">
<!-- Hamburger menu for mobile devices -->
<label id="nav-toggle" class="flex center-y" for="toggle">☰</label>
<input type="checkbox" id="toggle"/>
<ul class ="flex sm-column lg-row center-y">
<li><a href="about.html">About</a></li>
<li><a href="accommodation.html">Accommodation</a></li>
<li class="active"><a href="things-to-do.html">Things to Do</a></li>
<li id="book-btn"><a href="book-now.html">Book Now</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section class="banner bg-img zoom-2" style="background-image: url(images/hero-1.jpg); background-position: 50% 80%; position: relative;">
<div class="container overlay flex center-x center-y" style="position: absolute;">
<h1>Things to Do</h1>
</div>
</section>
<!-- Header with informational text -->
<section class="container big-pad-top">
<h2 class="text-primary">Experience the Wonders of Martian Splendour Resort</h2>
<p>There is a lot of fun to get up to on Mars. If you are feeling adventurous you can speed through Martian terain in ATVs or go sand tobogganing. You can even attend Space Talks and space-themed workshops delivered by astronomers and astronauts. Then to cool off after an exhilarating day, you can relax in the main infinity pool or even grab a massage.
</p>
</section>
<!-- 3 card grid layout displaying various resort activites -->
<!-- ROW 1 -->
<section class="container big-pad-top">
<div class="card-container flex sm-column lg-row small-pad-bottom">
<!-- Card 1 -->
<div class="card-frame lg-column-3 box-shadow">
<div class="card-img" style="background-image: url(images/content/dirtbike-2.jpg);">
</div>
<div class="container flex lg-column sm-column">
<h3>Land Activities</h3>
<p>From sand tobogganing to racing in ATVs, there are numerous exhilarating things to experience on Mars. There are also more slow-paced activities like stargazing and parasailing.</p>
<div class="flex center-x">
<a href="coming-soon.html" class="btn">Learn More</a>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="card-frame lg-column-3 box-shadow">
<div class="card-img" style="background-image: url(images/content/mars-tours.jpg);">
</div>
<div class="container flex lg-column sm-column">
<h3 class>Mars Tours</h3>
<p>Explore a vast variety of enthralling Martian locations. This includes Olympus Mons - a mighty volcano almost 3 times the height of Mount Everest.</p>
<div class="flex center-x">
<a href="coming-soon.html" class="btn">Learn More</a>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="card-frame lg-column-3 box-shadow">
<div class="card-img" style="background-image: url(images/content/space-workshop.jpg);">
</div>
<div class="container flex lg-column sm-column">
<h3 class>Space Workshops</h3>
<p>Learn more about space and Mars with expert led ‘space workshops’. Here you can engage in fun practical activities like building nifty Martian rovers.</p>
<div class="flex center-x">
<a href="coming-soon.html" class="btn">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- ROW 2 -->
<section class="container">
<div class="card-container flex sm-column lg-row big-pad-bottom">
<!-- Card 1 -->
<div class="card-frame lg-column-3 box-shadow">
<div class="card-img" style="background-image: url(images/content/leisure.jpg);">
</div>
<div class="container flex lg-column sm-column">
<h3>Leisure</h3>
<p>In your down time, you can mingle with others in the social lounges. You can also enjoy facials and massages at the spa or a workout at the on-site gym.</p>
<div class="flex center-x">
<a href="coming-soon.html" class="btn">Learn More</a>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="card-frame lg-column-3 box-shadow">
<div class="card-img" style="background-image: url(images/content/food.jpg);">
</div>
<div class="container flex lg-column sm-column">
<h3 class>Eat & Drink</h3>
<p>Surely you’ve heard of freeze-dried space food. Well, no such thing here. Martian Splendour Resort offers a plethora of tasty dining experiences and caters to varying dietary needs.</p>
<div class="flex center-x">
<a href="coming-soon.html" class="btn">Learn More</a>
</div>
</div>
</div>
<!-- Filler card to preserve 3 grid layout -->
<div class="card-frame lg-column-3 box-shadow filler-card"></div>
</div>
</section>
<footer>
<div class="container pad-top">
<div class="flex lg-row sm-column space-between">
<ul>
<li class="f-title"><a href="about.html">About</a></li>
<li><a href="coming-soon.html">Location</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="coming-soon.html">Getting Here</a></li>
<li><a href="coming-soon.html">Facts and Facilities</a></li>
<li><a href="references.html">References</a></li>
</ul>
<ul>
<li class="f-title"><a href="accommodation.html">Accommodation</a></li>
<li><a href="coming-soon.html">Standard Suite</a></li>
<li><a href="coming-soon.html">Deluxe Suite</a></li>
<li><a href="coming-soon.html">Villa</a></li>
</ul>
<ul>
<li class="f-title"><a href="things-to-do.html">Things to Do</a></li>
<li><a href="coming-soon.html">Land Activites</a></li>
<li><a href="coming-soon.html">Mars Tours</a></li>
<li><a href="coming-soon.html">Space Workshops</a></li>
<li><a href="coming-soon.html">Leisure</a></li>
<li><a href="coming-soon.html">Eat & Drink</a></li>
</ul>
<ul>
<li class="f-title"><a href="coming-soon.html">Contact Us</a></li>
<li><a href="coming-soon.html">Social Media</a></li>
<li><a href="coming-soon.html">Reservation/Booking</a></li>
<li><a href="coming-soon.html">Email</a></li>
<li class="f-title"><a href="book-now.html">Book Now</a></li>
</ul>
</div>
<hr>
<p class="small-pad-top small-pad-bottom">Martian Splendour Resort, Copyright © 2020</p>
</div>
</footer>
</body>
</html>