-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjupiter.html
More file actions
157 lines (107 loc) · 4.21 KB
/
jupiter.html
File metadata and controls
157 lines (107 loc) · 4.21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/menu-1.css">
<script src="script/code1.js"></script>
<script src="script/calendar-code.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/calendar.css">
<title>Jupiter</title>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<a href="#news">About</a>
<a href="#contact">Contact</a>
<a href="#about" id="right">Log in</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
☰
</a>
</div>
<div class="jumbotron1">
<div class="container text-center">
<h1 class="title">Jupiter</h1>
<h2 class="light">The Magnified Planet</h2>
<img src="media/jupiter.svg" class="img-responsive logo" alt="our logo">
</div>
</div>
<br>
<div class="container-fluid bg-3 text-left darken">
<div class="row">
<div class="col-sm-6">
<h2>Things to do</h2><br>
<h3>Visit 75 Moons In One Day</h3>
<p>Learn about each moon and the qualities they possess. This can all be done whilst flying on our SolarJet. Jupiter owns the biggest SolarJet’s compared to other planets.</p>
<br>
<h3>Explore Magnified World</h3>
<p>Jupiter is the largest planet in the solar system. It is more than twice as massive as all the other planets combined.</p>
<p> Magnified World includes hundreds of gigantic rides that you've never seen or heard of. You'll have the change to enlarge yourself to 11 times your actual size</p>
<br>
</div>
<div class="col-sm-3 defined">
<h2 class="spaced">Gears To Have!</h2><br>
<h3>SpaceBods</h3>
<p>
Jupiter has a faint ringing sound, so make sure to wear your SpaceBods at all times.</p><br>
</div>
<div class="col-sm-3 defined">
<h2 class="spaced">Book your visit</h2>
<p>Select the month and the year and we will send you
the dates our ships travel to the planet.</p>
<br>
<!-- code copied for the date selector-->
<form>
<!-- Surround the select box within a "custom-select" DIV element.
Remember to set the width: -->
<div class="custom-date" >
<select>
<option value="0">Select the month:</option>
<option value="1">January</option>
<option value="2">February</option>
<option value="3">March</option>
<option value="4">April</option>
<option value="5">May</option>
<option value="6">June</option>
<option value="7">July</option>
<option value="8">August</option>
<option value="9">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</div>
<div class="custom-date">
<select>
<option value="13">Select the year:</option>
<option value="14">2019</option>
<option value="15">2020</option>
<option value="16">2021</option>
</select>
</div>
<div class="person-details">
<label for="fname" style="color: #fff;">Enter your name</label>
<input type="text" id="fname" name="fname">
<label for="lname" style="color: #fff;">Enter your email</label>
<input type="text" id="lname" name="lname">
</div>
<div>
<input type="submit" class="button" value="Submit">
</div>
</form>
</div>
</div>
</div><br><br>
<br><br>
<footer class="container-fluid text-center">
<a href="https://solarsystem.nasa.gov/resources/1032/jupiter-poster-version-a/"><p>Download Your NASA Jupiter Poster</p></a>
</footer>
</body>
</html>
</body>
</html>