-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchooseRoutine.html
37 lines (36 loc) · 1.77 KB
/
chooseRoutine.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="styles/routineChoice.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="shortcut icon" type="image/png" href="./images/logo_favicon.png">
<title>Choose Routine</title>
</head>
<body>
<!-- Beginning of header html -->
<header id="universalHeader">
<figure id="figureHeader"><img id="imageHeader" src="./images/logo_transparent.png" alt="logo" onclick="location.href='./main.html'"></figure>
<button onclick="location.href='./main.html'" id="homeHead">Home</button>
<button onclick="location.href='./reminders.html'" id="remindersHead">Reminders</button>
<button onclick="location.href='./profile.html'" id="profileHead">Profile</button>
</header>
<!-- End of header html -->
<section>Choose your Workout and Difficulty</section>
<!-- Grid that contains all these buttons -->
<div class="wrapper">
<button class="workout">Full Body</button>
<button class="workout">Upper Body</button>
<button class="workout">Lower Body</button>
<button class="difficulty">Easy</button>
<button class="difficulty">Intermediate</button>
<button class="difficulty">Advanced</button>
</div>
<!-- Start button is not located inside the grid -->
<div id="start">
<button id="startButton" onclick="start()"disabled>Start</button>
</div>
<script src="./scripts/routineSelection.js"></script>
</body>
</html>