-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuranus.html
More file actions
156 lines (107 loc) · 4.27 KB
/
uranus.html
File metadata and controls
156 lines (107 loc) · 4.27 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
<!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>Uranus</title>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<a href="about-us.html">About</a>
<a href="contact.html">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">Uranus</h1>
<h2 class="light">The red planet</h2>
<img src="media/uranus.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>Meet Queen and King Frost!</h3>
<p>Uranus is the coldest planet in the solar system. The minimum surface temperature on Uranus is -224°C. Queen and King Frost are the rulers of planet Uranus. They have regular meets and greets at their icy palace, so you will be given the opportunity to see them.</p>
<br>
<h3>Night Park</h3>
<p>Just like the zoo and safari park on earth, Uranus has it's own unusal creatures that are kept at Night Park. Uranus is the seventh planet from the Sun that is very dim, which is why it is very dark.</p>
<br>
</div>
<div class="col-sm-3 defined">
<h2 class="spaced">Gear to have!</h2><br>
<h3>Thermal SpaceSuit</h3>
<p>The suit heats up when worn. You must wear it at all times to avoid getting frozen.</p><br>
<h3>Vision Goggles</h3>
<p>Allows you to see in the dark.</p>
</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/974/uranus-poster-version-a/"><p>Download Your NASA Uranus Poster</p></a>
</footer>
</body>
</html>
</body>
</html>