-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da17056
commit 2d921f7
Showing
1 changed file
with
148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
<!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> | ||
|
||
|