-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaturn.html
More file actions
154 lines (105 loc) · 4.14 KB
/
saturn.html
File metadata and controls
154 lines (105 loc) · 4.14 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
<!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>Saturn</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">Saturn</h1>
<h2 class="light">The Ringed Planet</h2>
<img src="media/saturn.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 Windorious Theme Park</h3>
<p> Saturn has the fastest winds of any other planet in our solar system. Windorious is an in-door theme park that consist of rides and many arcade games. You'll also learn about the 150 moons it has. </p>
<br>
<h3>Flatten Yourself</h3>
<p>Saturn is the flattest planet. Its polar diameter is 90% of its equatorial diameter, this is due to its low density and fast rotation.</p>
<br>
</div>
<div class="col-sm-3 defined">
<h2 class="spaced">Gears To Have!</h2><br>
<h3>Cooling SpaceSuit</h3>
<p>The interior of Saturn is very hot, reaching temperatures of up to 11,700°C. It is compulsary to wear your SpaceSuit at all times to avoid sub burns. </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/1043/saturn-poster-version-c/"><p>Download your NASA Saturn poster</p></a>
</footer>
</body>
</html>
</body>
</html>