-
Notifications
You must be signed in to change notification settings - Fork 0
/
xtreme_moon_climbing.html
121 lines (111 loc) · 4.82 KB
/
xtreme_moon_climbing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Moons of Mars | MoonClimbing </title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a id="logo" href="index.html">
<img src="images/logo.png" alt="Moons of Mars logo" >
</a>
<div id="mobile-nav-btn">
<span></span>
<span></span>
<span></span>
</div>
<menu class="none">
<li class="dropdown">
<a class="dropbtn" href="#">Overview</a>
<div class="dropdown-content">
<a href="see_rooms.html">See Rooms</a>
<a href="gallery.html">Gallery</a>
<a href="references.html">References</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn" href="book_now.html">Book Now</a>
</li>
<li class="dropdown">
<a class="dropbtn" href="#">Activities</a>
<div class="dropdown-content">
<a href="guided_jetpack_tour.html">Guided Jetpack Tour</a>
<a href="xtreme_moon_climbing.html">Xtreme Moon Climbing</a>
<a href="mars_sight_seeing.html">Mars Sightseeing</a>
<a href="dining.html">Dining</a>
<a href="nightlife.html">Nightlife</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn" href="#">Park Information</a>
<div class="dropdown-content">
<a href="park_information.html">Frequently Asked Questions</a>
<a href="contact_us.html">Contact Us</a>
<a href="getting_here.html">Getting Here</a>
</div>
</li>
</menu>
</header>
<section id="moon-climbing">
<h1>
Xtreme Moon Climbing
</h1>
<article>
<div class="description">
<h3> Scale some of the highest cliffs in the milky way</h3>
<p>Get the oppurtunity to see some of the most extraordinary views
at the Moons of Mars resort. Our expert sherpas will take teams of 8
up Mount Deimos, the centerpiece of our resort. The total trip will go over
two days, where you will be spending the night at the top. All equipment will
be provided to you.
</p>
<p>Unlike a normal climb
on earth, you will be able to climb much futher distances at much less effort,
due the the weaker gravity on Deimos. Most climbers will describe this
as one of their best experiences to date.
</p>
<small>* Participants are required to pass a fitness test prior to climbing.</small>
</div>
<div class="summary">
<div class="summary-title">Xtreme Moon Climbing</div>
<div class="summary-image">
<img src="images/moonclimbing/climbing.jpeg">
</div>
<div class="summary-item">2 days</div>
<div class="summary-item">8-10 people</div>
<div class="summary-item">One climb per day</div>
</div>
</article>
</section>
<footer>
<nav id="secondary-menu">
<p id='copyright'>Moons of Mars © 2021</p>
<ul>
<li>
<a href="#">Twitter</a>
</li>
<li>
<a href="#">Youtube</a>
</li>
<li>
<a href="#">Instagram</a>
</li>
<li>
<a href="#">Flickr</a>
</li>
<li>
<a href="#">LinkedIn</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
</ul>
</nav>
</footer>
<script src="js/nav_bar.js"></script>
</body>
</html>