-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmars.html
More file actions
163 lines (114 loc) · 4.46 KB
/
mars.html
File metadata and controls
163 lines (114 loc) · 4.46 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
158
159
160
161
162
163
<!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>Mars</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">Mars</h1>
<h2 class="light">The red planet</h2>
<img src="media/mars.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 Valles Marineris</h3>
<p>The vast canyon system that runs along the Martian equator.</p>
<p>A large tectonic 'crack' in the Martian crust, formed as the
planet cooled and affected by the rising crust in the Tharsis region to the west.</p>
<br>
<h3>Play basketball like a pro</h3>
<p>The vast canyon system that runs along the Martian equator.</p>
<p>A large tectonic 'crack' in the Martian crust, formed as the
planet cooled and affected by the rising crust in the Tharsis region to the west.</p>
<br>
</div>
<div class="col-sm-3 defined">
<h2 class="spaced">Gears To Have!</h2><br>
<h3>Gravity boots</h3>
<p>With about 1/3 the gravity of Earth you would need the boots
to keep yourself firmly on the ground.</p><br>
<h3>Space suit</h3>
<p>Mars is a cold desert world. It is half the size of Earth
and has a thin atmosphere made up mostly of carbon dioxide.
With average temperature of -30<!--℃--> you need your suit to keep you warm!</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/1036/mars-poster-version-a/"><p>Download your NASA Mars poster</p></a>
</footer>
</body>
</html>
</body>
</html>