-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkout-planner.html
More file actions
50 lines (47 loc) · 1.67 KB
/
workout-planner.html
File metadata and controls
50 lines (47 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Workout Planner</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div class="form-container">
<form id="workoutForm">
<div class="form-row">
<div class="form-group">
<label for="trainingLocation">Training Environment</label>
<select
id="trainingLocation"
class="form-field"
onchange="updateForm()"
>
<option value="pool">Pool</option>
<option value="gym">Gym</option>
<option value="dryland">Dry Land</option>
</select>
</div>
<div class="form-group">
<label for="difficultyLevel">Choose your difficulty level:</label>
<select id="difficultyLevel" class="form-field">
<option value="beginner">Beginner</option>
<option value="intermediate">Intermediate</option>
<option value="advanced">Advanced</option>
</select>
</div>
<div class="form-group">
<label for="workoutType">Select the type of workout:</label>
<select id="workoutType" class="form-field">
<option value="flexibility">Flexibility</option>
<option value="strength">Strength</option>
<option value="cardio">Cardio</option>
</select>
</div>
</div>
</form>
</div>
<script src="js/header.js"></script>
<script src="js/workout-planner.js"></script>
</body>
</html>