-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_quiz.html
148 lines (110 loc) · 4.11 KB
/
index_quiz.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
<!DOCTYPE html>
<html>
<head>
<title>Quiz</title>
<link rel="stylesheet" href="styles_quiz.css">
<!-- STYLES -->
<style>
body{
text-align: center;
padding:0;
font-family: Arial, Helvetica, sans-serif;
background-color: white;
position: relative;
margin-bottom: 100px;
border-left-width: 200px;
border-color: black;
}
h1 {
color: white;
background-color:rgba(197, 197, 52, 0.616);
padding:0;
font-family: Arial, Helvetica, sans-serif;
font-size: 100px;
position: relative;
height: 100px;
}
</style>
</head>
<body>
<center><h1>Quiz</h1></center>
<form action="">
<br><br>
<!-- EQUIPMENT -->
<strong>What equipment do you have? (Select all that apply)</strong>
<br><br>
dumbells <input type="checkbox" name="equipment" value="dumbells">
yoga mat <input type="checkbox" name="equipment" value="yoga mat">
exercise bike <input type="checkbox" name="equipment" value="execise bike">
<br><br>
equipment1 <input type="checkbox" name="equipment" value="equipment1">
equipment2 <input type="checkbox" name="equipment" value="equipment2">
equipment3 <input type="checkbox" name="equipment" value="equipment3">
<br><br><br>
<!-- WEEKLY EXERCISE -->
<strong>How many days per week do you exercise?</strong>
<select name="How many days per week do you exercise?" id="">
<option value="none">none</option>
<option value="1-2">1-2</option>
<option value="3-4">3-4</option>
<option value="5-6">5-6</option>
<option value="everyday">everyday</option>
</select>
<br><br><br>
<!-- EXERCISE LENGTH -->
<strong>How long do you exercise for?</strong>
<select name="How long do you exercise for" id="">
<option value="under 10 minutes">under 10 minutes</option>
<option value="10-20 minutes">10-20 minutes</option>
<option value="30 minutes - 1 hour">30 minutes - 1 hour</option>
<option value="over 1 hour">over 1 hour</option>
</select>
<br><br><br>
<!-- SORENESS -->
<strong>Do you feel sore?</strong>
yes: <input type="radio" name="sore?">
no: <input type="radio" name="sore?">
<br>
<br>
<br>
<strong>If yes, where?</strong>
<br><br>
<textarea name="" id="" cols="50" rows="5"></textarea>
<br><br><br>
<!-- GOAL -->
<strong>What goal do you hope to achieve with this website?</strong>
<br><br>
<textarea name="" id="" cols="50" rows="5"></textarea>
<br><br><br>
<!-- INTENSITY -->
<strong>What intensity are you comfortable with?</strong>
<select name="What intensity are you comfortable with?" id="">
<option value="light">light</option>
<option value="intermediate">intermediate</option>
<option value="difficult">difficult</option>
<br><br><br>
</select>
<br>
<br>
<br>
<!-- BODY PARTS -->
<strong>What body parts would you like to focus on? (Check all that apply)</strong>
<br><br>
ankle and foot <input type="checkbox" name="body part" value="ankle and foot"><br><br>
back <input type="checkbox" name="body part" value="back"><br><br>
elbow and forearm <input type="checkbox" name="body part" value="elbow and forearm"><br><br>
hip and thigh <input type="checkbox" name="body part" value="hip and thigh"><br><br>
knee and lower leg <input type="checkbox" name="body part" value="knee and lower leg"><br><br>
head and neck <input type="checkbox" name="body part" value="head and neck"><br><br>
shoulder and upper arm <input type="checkbox" name="body part" value="shoulder and upper arm"><br><br>
wrist and hand <input type="checkbox" name="body part" value="wrist and hand"><br><br>
whole body <input type="checkbox" name="body part" value="whole body"><br><br><br><br>
<!-- SUMBIT -->
<input type="submit" value="submit">
<br><br><br><br>
</form>
</body>
</html>