-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
133 lines (115 loc) · 5.43 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Moons of Mars | Gallery</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">
<link rel="stylesheet" href="css/baguetteBox.min.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='gallery'>
<!-- <h2>Gallery</h2> -->
<div id="gallery-box">
<a href="images/gallery/image1.jpeg" data-caption="Our spacesuits on the mars expidition">
<img src="images/gallery/image1.jpeg" alt="Our spacesuits on the mars expidition">
</a>
<a href="images/gallery/image2.jpeg" data-caption="North Canyon - Deimos">
<img src="images/gallery/image2.jpeg" alt="North Canyon - Deimos">
</a>
<a href="images/gallery/image3.jpeg" data-caption="CavedIn Resteraunt">
<img src="images/gallery/image3.jpeg" alt="CavedIn Resteraunt">
</a>
<a href="images/gallery/image4.jpeg" data-caption="Phobos Events Hall">
<img src="images/gallery/image4.jpeg" alt="Phobos Events Hall">
</a>
<a href="images/gallery/image5.jpeg" data-caption="Hidden Room">
<img src="images/gallery/image5.jpeg" alt="Hidden Room Activity">
</a>
<a href="images/gallery/image6.jpeg" data-caption="Spacecraft">
<img src="images/gallery/image6.jpeg" alt="Spacecraft next to people">
</a>
<a href="images/jetpacking/diver.jpeg" data-caption="Person in jetpack.">
<img src="images/jetpacking/diver.jpeg" alt="Person in jetpack.">
</a>
<a href="images/nightlife/theatre.jpeg" data-caption="Ballerinas performing in theatre">
<img src="images/nightlife/theatre.jpeg" alt="Ballerinas performing in theatre">
</a>
<a href="images/gallery/image3.jpeg" data-caption="CavedIn Resteraunt">
<img src="images/gallery/image3.jpeg" alt="CavedIn Resteraunt">
</a>
</div>
</section>
<footer>
<nav id="secondary-menu">
<p id='copyright'>Moons of Mars © 2021</p>
<ul>
<li>
<a href="under_construction.html">Twitter</a>
</li>
<li>
<a href="under_construction.html">Youtube</a>
</li>
<li>
<a href="under_construction.html">Instagram</a>
</li>
<li>
<a href="under_construction.html">Flickr</a>
</li>
<li>
<a href="under_construction.html">LinkedIn</a>
</li>
<li>
<a href="under_construction.html">Privacy Policy</a>
</li>
</ul>
</nav>
</footer>
<script src="js/baguetteBox.min.js"></script>
<script src="js/gallery.js"></script>
<script src="js/nav_bar.js"></script>
</body>
</html>