-
Notifications
You must be signed in to change notification settings - Fork 0
/
spacecraft.html
319 lines (317 loc) · 11.4 KB
/
spacecraft.html
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="images/logo.png" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<link href="styles/options.css" rel="stylesheet" type="text/css" />
<link href="styles/mobile.css" rel="stylesheet" type="text/css" />
<title>Spacecraft Info</title>
</head>
<body>
<canvas id="background">
<div id="container"></div>
</canvas>
<div
class="modal fade"
id="others-modal"
data-bs-backdrop="static"
data-bs-keyboard="false"
tabindex="-1"
aria-labelledby="staticBackdropLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Inquiry Form</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<form id="qForm">
<div class="form-group row">
<label for="inputName" class="col-sm-2 col-form-label"
>Name</label
>
<div class="col-sm-10">
<input
type="text"
class="form-control"
id="inputName"
placeholder="Your Name"
/>
</div>
</div>
<div class="form-group row">
<label for="inputEmail" class="col-sm-2 col-form-label"
>Email</label
>
<div class="col-sm-10">
<input
type="email"
class="form-control"
id="inputEmail"
placeholder="Email"
/>
</div>
</div>
<div class="form-group row">
<label for="inputQuestion" class="col-sm-2 col-form-label"
>Question(s)</label
>
<div class="col-sm-10">
<textarea class="form-control" id="inputQuestion"></textarea>
</div>
</div>
</form>
</div>
<div class="modal-footer" style="justify-content: space-between">
<button
type="submit"
class="btn btn-primary"
id="inquiry-submitter"
>
Submit
</button>
<div
class="alert alert-danger"
id="form-incomplete"
role="alert"
style="float: left"
>
Please fill out all sections of the form before submitting!
</div>
</div>
</div>
</div>
</div>
<div
class="modal fade"
id="submission_success"
data-bs-backdrop="static"
data-bs-keyboard="false"
tabindex="-1"
aria-labelledby="staticBackdropL"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropL">Inquiry Submitted</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
Your inquiry has been submitted and a team member will get back to
you within 48 hours.
</div>
</div>
</div>
</div>
<div
class="offcanvas offcanvas-end"
tabindex="-1"
id="offcanvasRight"
aria-labelledby="offcanvasRightLabel"
>
<div class="offcanvas-header">
<h5 class="offcanvas-title display-4" id="offcanvasRightLabel">
Explore <i class="fas fa-rocket"></i>
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="offcanvas"
aria-label="Close"
></button>
</div>
<div class="offcanvas-body">
<a class="dropdown-item menu-item" href="index.html">Home</a>
<a class="dropdown-item menu-item" href="packages.html">Travel Plans</a>
<a class="dropdown-item menu-item" href="journey_info.html"
>The Journey</a
>
<a class="dropdown-item menu-item" href="spacecraft.html"
>The Spacecraft</a
>
<a class="dropdown-item menu-item" href="booking.html"
>Register to Book</a
>
<a class="dropdown-item menu-item" href="citation.html">Sources</a>
</div>
</div>
<div id="intro">
<div class="sub-included">
<div class="together" onclick="window.location='index.html';">
<img class="icon" src="images/logo.png" alt="the-icon" />
<h1 class="logo-text">Cosmic Cruiselines</h1>
<h3 class="hide-on-desktop page-title">The Spacecraft</h3>
</div>
<h3 class="hide-on-mobile">The Spacecraft</h3>
</div>
<button
class="btn btn-secondary"
type="button"
data-bs-toggle="offcanvas"
id="menu-btn"
data-bs-target="#offcanvasRight"
aria-controls="offcanvasRight"
>
<img src="images/hamburger-menu.png" id="ham-menu-btn" alt="*menu" />
</button>
</div>
<div class="body-container">
<div class="upper-centered left">
<img
src="images/space-shuttle-img.png"
class="img-fluid front"
style="margin-left: 20px"
alt="the_space_shuttle"
/>
At Cosmic Cruiselines, we are proud to offer our space tourists the
opportunity to travel to space on our state-of-the-art spacecraft, the
Celestial Voyager. The Celestial Voyager is a cutting-edge spacecraft
designed to provide a safe, comfortable, and unforgettable journey to
space.
<br />
<br />
The Celestial Voyager is a reusable spacecraft that is capable of
carrying up to six passengers and two pilots to low Earth orbit. The
spacecraft is approximately 12 meters long and 4 meters wide, and it is
powered by a combination of liquid oxygen and liquid hydrogen engines.
<br />
<br />
The spacecraft is equipped with a range of advanced technologies,
including a computer-controlled guidance and navigation system, a life
support system, and a thermal protection system. The life support system
is capable of providing oxygen, water, and food to the passengers during
their journey, while the thermal protection system ensures that the
spacecraft can withstand the extreme temperatures of space travel.
<br />
<br />
The spacecraft also features large windows that provide stunning views
of the Earth and the cosmos beyond. Passengers can enjoy a weightless
experience as they float around the cabin, taking in the incredible
sights and sensations of space travel.
<br />
<br />
The Celestial Voyager is designed to be both safe and environmentally
friendly. It uses non-toxic fuels and features a reusable design that
minimizes waste and reduces the environmental impact of space travel.
<br />
<br />
In summary, the Celestial Voyager is a cutting-edge spacecraft designed
to provide a safe, comfortable, and unforgettable journey to space for
our space tourists. With advanced technologies and a commitment to
safety and sustainability, the Celestial Voyager is the perfect
spacecraft for the adventure of a lifetime.
</div>
<footer class="py-5 front" id="the-footer">
<div class="row" style="justify-content: space-around">
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2">
<a href="index.html" class="nav-link p-0 link-light">Home</a>
</li>
<li class="nav-item mb-2">
<a href="packages.html" class="nav-link p-0 link-light"
>Travel Plans</a
>
</li>
<li class="nav-item mb-2">
<a href="journey_info.html" class="nav-link p-0 link-light"
>The Journey</a
>
</li>
<li class="nav-item mb-2">
<a href="spacecraft.html" class="nav-link p-0 link-light"
>The Spacecraft</a
>
</li>
<li class="nav-item mb-2">
<a href="booking.html" class="nav-link p-0 link-light"
>Registration</a
>
</li>
</ul>
</div>
<div class="col-md-5 offset-md-1 mb-3">
<p>
<i class="fas fa-envelope"></i>
Email Address:
<a class="contact-info-link" href="mailto:[email protected]"
>
</p>
<p>
<i class="fas fa-phone"></i>
Phone Number:
<a class="contact-info-link" href="tel:+11234567890" style="text-decoration:none;">(123)-456-7890</a>
</p>
<br />
<form>
<h5>Subscribe to our newsletter</h5>
<p>Learn what's new and exciting about Cosmic Cruiselines!</p>
<div class="d-flex flex-column flex-sm-row w-100 gap-2">
<label for="newsletter1" class="visually-hidden"
>Email address</label
>
<input
id="newsletter1"
type="text"
class="form-control"
placeholder="Email address"
/>
<button class="btn btn-primary" type="button">Subscribe</button>
</div>
</form>
</div>
</div>
<div
class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top"
>
<p>© 2023 Cosmic Cruiselines, Inc. All rights reserved.</p>
</div>
</footer>
<div class="chatbot-window transparent-outlined">
<div class="chatbot-top">
<h3>Chat With CC!</h3>
</div>
<div class="chat-body imessage" id="messages-here"></div>
<div class="sender-div"></div>
<div class="chatbot-bottom">
<img
src="images/chatbot.jpeg"
alt="chatbot-img"
id="chatbot-toggler"
\
/>
</div>
</div>
</div>
<script src="scripts/script.js"></script>
<script src="scripts/chatbot.js"></script>
<script src="scripts/inquirySubmission.js"></script>
</body>
</html>