-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvenus.html
More file actions
153 lines (106 loc) · 4.04 KB
/
venus.html
File metadata and controls
153 lines (106 loc) · 4.04 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
<!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>Venus</title>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html">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">Venus</h1>
<h2 class="light">Venus spins slowly in the opposite direction most planets do.
Amusement park to visit: Slow World</h2>
<img src="media/venus.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>Slow World</h3>
<p>Do not rush, spas and relax centres await for you</p>
<br>
<h3>Visit the endless number of volcanos</h3>
<p>Venus' solid surface is a volcanic landscape covered with extensive
plains featuring high volcanic mountains and vast ridged plateaus</p>
<br>
</div>
<div class="col-sm-3 defined">
<h2 class="spaced">Gears To Have!</h2><br>
<h3>Cooling Spacesuit</h3>
<p>The planet’s surface temperature is about 465 degrees Celsius, the Cooling Spacesuit will
make sure that you do not melt away while relaxing.</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/937/venus-poster-version-a/"><p>Download your NASA Venus poster</p></a>
</footer>
</body>
</html>