-
Notifications
You must be signed in to change notification settings - Fork 1
/
exercise.html
132 lines (94 loc) · 3.98 KB
/
exercise.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
<!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">
<link rel="stylesheet" href="./assets/main/reset.css"/>
<link rel="stylesheet" href="./assets/excercise/exercise.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"/>
<title>Home Workouts</title>
</head>
<nav class="hero-head navbar">
<div class="container is-flex">
<h1 class="title column is-size-5-mobile is-responsive mt-3"><span class="has-text-primary">FIT </span>Resolution</h1>
<ul class="nav-btn">
<li class="home mt-5 mr-4 button is-rounded is-small has-text-grey is-responsive"><a href="index.html">HOME</a></li>
</ul>
</div>
</nav>
<body class="hero is-info is-fullheight is-responsive">
<main class="hero-body">
<div id="gifDiv" class="columns is-flex is-flex-wrap-wrap" >
</div>
<div id="button-div" class="columns is-3 is-flex is-flex-wrap-wrap">
<div class="column is-half-mobile is-one-third-desktop is-one-third-fullhd is-one-third-tablet is-one-third-widescreen">
<div class="">
<button id="cardio-btn" class="style">
<figure class="image is-256x256 p-6">
<img src="./assets/images/cardio.jpg" alt="Placeholder image">
<!-- <p>Cardio</p> -->
</figure>
</button>
</div>
</div>
<div class="column is-half-mobile is-one-third-desktop is-one-third-fullhd is-one-third-tablet is-one-third-widescreen">
<div class="">
<button id="waist-btn" class="style">
<figure class="image is-256x256 p-6">
<img src="./assets/images/abs.jpg" alt="Placeholder image">
<!-- <p>Waist</p> -->
</figure>
</button>
</div>
</div>
<div class="column is-half-mobile is-one-third-desktop is-one-third-fullhd is-one-third-tablet is-one-third-widescreen">
<div class="">
<button id="chest-btn" class="style">
<figure class="image is-256x256 p-6">
<img src="./assets/images/chest.jpg" alt="Placeholder image">
<!-- <p>Chest</p> -->
</figure>
</button>
</div>
</div>
<div class="column is-half-mobile is-one-third-desktop">
<div class="">
<button id="back-btn" class="style">
<figure class="image is-256x256 p-6">
<img src="./assets/images/back.jpg" alt="Placeholder image">
<!-- <p>Back</p> -->
</figure>
</button>
</div>
</div>
<div class="column is-half-mobile is-one-third-desktop">
<div class="">
<button id="arms-btn" class="style">
<figure class="image is-256x256 p-6">
<img src="./assets/images/arm.jpg">
</figure>
</button>
</div>
</div>
<div class="column is-half-mobile is-one-third-desktop">
<div class="">
<button id="legs-btn" class="style ">
<figure class="is-256x256 p-6">
<img src="./assets/images/legs.jpg" alt="Placeholder image">
</figure>
</button>
</div>
</div>
</main>
<footer class="hero-foot">
<div class="content has-text-right">
<a href="https://github.com/JonJon50/Fit-Resolution">
<i class="button is-small fa-brands fa-github is-primary is-responsive"><span class="logo">Github</span></i>
</a>
</div>
</footer>
<script src="https://kit.fontawesome.com/b754e15a00.js" crossorigin="anonymous"></script>
<script src="./assets/excercise/exercise.js"></script>
</body>
</html>