forked from jamessciacca/fitness-fusion-workout-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (77 loc) · 4.48 KB
/
index.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
<!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">
<title>Fitness Fusion - Your Destination to Fitness</title>
<!-- tailwindcss cdn link to style -->
<!-- needs to be placed before the local style.css file -->
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body class="bg-rgba(88,146,194,255) flex flex-col items-center ">
<div id="logo" class="hide">
<a id='logo-btn' href="#welcome-screen"><img src="assets/fitnessfusionlogo.png" alt="fitness-fusion-logo"></a>
</div>
<!-- add css from framework within the html for responsiveness -->
<div id="welcome-screen" class="flex flex-col justify-center items-center ">
<!-- create the welcome screen elements within this div! -->
<img src="assets/fitnessfusionlogo.png" alt="fitness-fusion-logo" class="w-96 h-96 mt-44">
<!-- this button will bring user to question page -->
<button id="get-started" class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900">Get
Started!</button>
<!-- about us needs to be added here! -->
</div>
<section id='questions-page' class="hide container">
<div id="question-one" class=" flex flex-col space-x-4 justify-center items-center mt-2">
<h2 class="mb-8">Choose Your Experience Level</h2>
<button id="beginner"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Beginner</button>
<button id="intermediate"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Intermediate</button>
<button id="expert"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Expert</button>
</div>
<div id="question-two" class="flex flex-col space-x-4 justify-center items-center mt-8">
<h2 class="mb-8">Choose Your Exercise Type</h2>
<button id="powerlifting"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Powerlifting</button>
<button id="strength-training"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Strength</button>
<button id="plyometrics"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Plyometrics</button>
</div>
<div id="question-three" class="grid grid-row-2 space-x-4 justify-center items-center mt-8 mt-2">
<h2 class="mb-8">Please select your desired Muscle Group</h2>
<button id="chest"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Chest</button>
<button id="lats"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Lats</button>
<button id="quads"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Quadriceps</button>
<button id="hamstring"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Hamstring</button>
<button id="bicep"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Bicep</button>
<button id="tricep"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900 mb-2">Tricep</button>
</div>
<div id="submit" class="flex flex-col space-x-4 justify-center items-center mb-24 mt-4">
<button id="create-workout"
class="h-10 px-6 font-semibold rounded-md border border-slate-200 text-slate-900">Create Your
Workout</button>
</div>
</section>
<section id="final-page" class="hide">
<div id="display-quote"></div>
<div id="display-workout"></div>
</section>
<!-- jQuery cdn link -->
<!-- needs to be placed befored the javascript file -->
<script src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<!-- local script file -->
<script src="js/script.js"></script>
</body>
</html>