-
Notifications
You must be signed in to change notification settings - Fork 0
/
under_construction.html
94 lines (88 loc) · 3.59 KB
/
under_construction.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Moons of Mars | Under Construction</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="under-construction">
<video autoplay muted loop>
<source src="images/construction.mp4" type="video/mp4">
</video>
<h3>This page is currently...</h3>
<h1>Under Construction</h1>
<h4>Coming Soon</h4>
</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/nav_bar.js"></script>
</body>
</html>