-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (108 loc) · 5.2 KB
/
index.html
File metadata and controls
129 lines (108 loc) · 5.2 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
<!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">
<script src="index.js" defer></script>
<title>MarsNeedsYou</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel ="stylesheet" href="index.css">
</head>
<body>
<nav class="navbar bg-dark" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Mars Mission</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link" href="index.html">Mars Quiz</a>
<a class="nav-link" href="EWpage2.html">Successful Applicant Form</a>
<a class="nav-link" href="EWpage3.html">Withdraw Application</a>
</div>
</div>
</div>
</nav>
<div id="headerdiv"> <!-- HEADER -->
<h1 id="jsHeader">Am I a suitable candidate to join the Mars mission?</h1>
<h3>...Quiz</h3>
</div>
<div id="marsphoto">
<img src="mars.jpg">
</div>
<div id="introdiv"> <!-- INTRO -->
<p>Thank you for your interest in applying to be part of the first human relocation mission to Mars!</p>
<br>
<p>We are incredably selective of the humans we can take so we will need you to answer a few questions first. Only the most *perfect* of human specimins will be accepted.
Please answer honestly, an inacurasees can place the mission in jeapody. </p>
</div>
<div id="allquestionsdiv"> <!-- ALL QUESTIONS -->
<div id="q"> <!--Q1-->
<h2 id="q1">What physical shape are you in?</h2>
<div class="custom-select" style="width:200px;">
<select>
<option value="0">Select</option>
<option value="1">I'm in amazing shape</option>
<option value="2">I'm alright</option>
<option value="3">I'm as sedintary as a mushroom</option>
</select>
</div>
</div> <!--Q1-->
<div id="q"> <!--Q2-->
<h2>Are you a picky eater?</h2>
<div class="custom-select" style="width:200px;">
<select>
<option value="0">Select</option>
<option value="1">Yes</option>
<option value="2">I have one or more allergies or intollerances</option>
<option value="3">I hate mushrooms but that's about it</option>
<option value="4">I omit certain foods</option>
<option value="5">I eat anything and everything</option>
</select>
</div>
</div> <!--Q2-->
<div id="q"> <!--Q3-->
<h2>How practical are you?</h2>
<div class="custom-select" style="width:200px;">
<select>
<option value="0">Select</option>
<option value="1">I can build Ikea furniture with no help</option>
<option value="2">I can build Ikea furniture with some help</option>
<option value="3">I have to bribe other people to build my Ikea furniture</option>
</select>
</div>
</div> <!--Q3-->
<div id="q"> <!--Q4-->
<h2>How adventurous are you?</h2>
<div class="custom-select" style="width:200px;">
<select>
<option value="0">Select</option>
<option value="1">I love trying new things</option>
<option value="2">I occasionally order meals I've never tried before</option>
<option value="3">I know what I like & like what I know</option>
</select>
</div>
</div> <!--Q4-->
<div id="q"> <!--Q5-->
<h2>How long can you survive without an internet connection?</h2>
<div class="custom-select" style="width:200px;">
<select>
<option value="0">Select</option>
<option value="1">I possess amazing restraint</option>
<option value="2">I will be fine for a month to a year</option>
<option value="3">I have never been alone with my thoughts and will suffer</option>
</select>
</div>
</div> <!--Q5-->
</div> <!-- ALL QUESTIONS -->
<div id="submitbuttondiv"> <!-- SUBMIT BUTTON -->
<a href="EWpage2.html">
<button id="submitbutton" type="button" class="btn btn-dark btn-lg">Submit Answers</button>
</a>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</html>