forked from Cradle-Boys/Healthy-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chest.html
482 lines (450 loc) · 28.9 KB
/
chest.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Healthy - Exercise - Chest
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="CSS/index-stylesheet.css">
</head>
<body class="colored-bg">
<nav class="navbar navbar-expand-lg navbar-dark sticky-top navbar-custom1 static-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<i class="fas fa-heartbeat">  Healthy</i>
</a>
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html"><i class="fas fa-home"> Home</i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="workout.html"><i class="fas fa-dumbbell"> Workout Routines</i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="diet-plan-pages/diet-plans.html"><i class="fas fa-utensils"> Diet Plans</i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us-pages/about-us-page-main.html"><i class="fas fa-user-circle"> Profile</i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i class="fas fa-cogs"> Settings</i></a>
</li>
</ul>
</div> -->
</div>
</nav>
<div id="imageSlider" class="border border-dark">
<div id="headerSlider" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#headerSlider" data-slide-to="0" class="active"></li>
<li data-target="#headerSlider" data-slide-to="1"></li>
<li data-target="#headerSlider" data-slide-to="2"></li>
<li data-target="#headerSlider" data-slide-to="3"></li>
<li data-target="#headerSlider" data-slide-to="4"></li>
<li data-target="#headerSlider" data-slide-to="5"></li>
<li data-target="#headerSlider" data-slide-to="6"></li>
<li data-target="#headerSlider" data-slide-to="7"></li>
<li data-target="#headerSlider" data-slide-to="8"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<a href="#">
<img class="d-block img-fluid low-brightness" src="images/chest_2000x950.png" alt="First slide - Chest">
<div class="carousel-caption">
<h4>Chest</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="biceps.html">
<img class="d-block img-fluid low-brightness" src="images/biceps_2000x950.png" alt="Second slide - Biceps">
<div class="carousel-caption">
<h4>Biceps</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="shoulders.html">
<img class="d-block img-fluid low-brightness" src="images/shoulders_2000x950.png" alt="Third slide - Shoulder">
<div class="carousel-caption">
<h4>Shoulders</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="triceps.html">
<img class="d-block img-fluid low-brightness" src="images/triceps_2000x950.png" alt="Fourth slide - Triceps">
<div class="carousel-caption">
<h4>Triceps</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="abs.html">
<img class="d-block img-fluid low-brightness" src="images/abs_2000x950.png" alt="Fifth slide - Abs">
<div class="carousel-caption">
<h4>Abs</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="back.html">
<img class="d-block img-fluid low-brightness" src="images/back_2000x950.png" alt="Sixth slide - Back">
<div class="carousel-caption">
<h4>Back</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="thigh.html">
<img class="d-block img-fluid low-brightness" src="images/thigh_2000x950.png" alt="Seventh slide - Thighs">
<div class="carousel-caption">
<h4>Thighs</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="glutes.html">
<img class="d-block img-fluid low-brightness" src="images/glutes_2000x950.png" alt="Eight slide - Glutes">
<div class="carousel-caption">
<h4>Glutes</h4>
</div></a>
</div>
<div class="carousel-item">
<a href="calves.html">
<img class="d-block img-fluid low-brightness" src="images/calves_2000x950.png" alt="Ninth slide - Calves">
<div class="carousel-caption">
<h4>Calves</h4>
</div></a>
</div>
</div>
<a class="carousel-control-prev" href="#headerSlider" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#headerSlider" role="button" data-slide="next">
<span class="carousel-control-next-icon" id="quotess" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Section for the Chest -->
<div class="d-flex flex-column colored-bg page-section">
<div class="p-3 mt-1 mb-3">
<div class=" border border border-light bg-dark p-2">
<p class="lead text-justify p-2 text-white">The <span class="font-weight-bold text-dark mark rounded-lg" data-toggle="modal" data-target="#hmChestModal">Chest</span> enhance the pectoral muscles that lie at the base of your chest. This results in higher and relatively larger-looking breasts, improving their shape.</p>
</div>
</div>
<div class="px-3 py-1">
<div class="py-2 text-center rounded border border-light triceps">
<p class="display-4 text-white">Workouts without needed Equipment</p>
</div>
<!-- exercise 1 -->
<div class="mx-auto" data-toggle="collapse" data-target="#diamondPushups">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Diamond Push-ups</h4>
</div>
<div class="collapse" id="diamondPushups">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Diamond Push-ups
</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/diamond-push-ups.gif" alt="Diamond Push-ups" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s): Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> In the plank position, instead put your hands together beneath you in the shape of a diamond. Now do the push up with your hands in this form. This requires significantly more strength in your arms. To add more pressure to the chest try squeezing your hands together on the floor. The point isn't to move them; it's to get activation of the chest.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#diamondPushups">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 2 -->
<div class="mx-auto" data-toggle="collapse" data-target="#declinePushups">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Decline Push-ups</h4>
</div>
<div class="collapse" id="declinePushups">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Decline Push-ups
</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/decline-push-ups.gif" alt="Decline Push-ups" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s): Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> Instead of starting from the ground in a flat plank position you are going to want to find a place where you can elevate your feet. Your goal is to achieve an angle where once you have your arms extended, shoulders are at the same angle as your feet.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#declinePushups">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 3 -->
<div class="mx-auto" data-toggle="collapse" data-target="#traditionalPushUps">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Traditional Push-ups</h4>
</div>
<div class="collapse" id="traditionalPushUps">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Traditional Push-ups</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/traditional-push-ups.gif" alt="Traditional Push-ups" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong>
Assume a face-down prone position on the floor. Raise yourself using your arms. Your hands should be slightly wider than your shoulders. This works both your arms and your chest.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#traditionalPushUps">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 4 -->
<div class="mx-auto" data-toggle="collapse" data-target="#kneePushups">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Knee Push-ups</h4>
</div>
<div class="collapse" id="kneePushups">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Incline Push-ups</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/knee-push-ups.gif" alt="Knee Push-ups" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> Push up from your knees. If you aren't quite to the point of doing full push-ups yet, try starting with your weight on your knees instead of the balls of your feet. Perform the push up as normal, and when you can do these easily start trying regular push-ups
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#kneePushups">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 5 -->
<div class="mx-auto" data-toggle="collapse" data-target="#knucklePushups">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Knuckle Push-ups</h4>
</div>
<div class="collapse" id="knucklePushups">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Knuckle Push-ups</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/knuckle-push-ups.gif" alt="Triceps Dips" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor </p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> Practice a knuckle push up. Instead of using the palms of your hands, put your weight on your fists, using the first two knuckles of each hand. These require more strength in the arms and wrists, and are a good way to condition your knuckles for boxing or martial arts.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#knucklePushups">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="px-3 py-1">
<div class="py-2 text-center rounded border border-light triceps">
<p class="display-4 text-white">Workouts with Equipments</p>
</div>
<!-- exercise 6 -->
<div class="mx-auto" data-toggle="collapse" data-target="#chestDips">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Chest Dips</h4>
</div>
<div class="collapse" id="chestDips">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Chest Dips</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/chest-dips.gif" alt="Chest Dips" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> For this exercise, you won’t need dumbbells but instead another piece of equipment — either parallel bars or two flat parallel surfaces you can dip between (stable bar stools also work). Grab the bars or place hands on the flat surface and hold your body at arm’s length (arms locked), knees bent so you don’t touch the floor. With control, slowly lower your body keeping your elbows pointed out slightly until you feel a slight stretch in your chest. Be careful not to go down too low; you don’t want to hurt your shoulder joint. While exhaling, contract your chest to bring your body back to the start position.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#chestDips">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 7 -->
<div class="mx-auto" data-toggle="collapse" data-target="#regularChestPress">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Regular Chest Press</h4>
</div>
<div class="collapse" id="regularChestPress">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Regular Chest Press</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/regular-chest-press.gif" alt="Regular Chest Press" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> Lie on a flat bench, holding the dumbbells in your hands. Stretch your arms over your shoulder, shoulder-width apart. From this starting position, inhale and descend slowly until your elbows are parallel to the floor at a 90°angle. Then push the weights back up while exhaling to return to the starting position.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#regularChestPress">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 8 -->
<div class="mx-auto" data-toggle="collapse" data-target="#inclineChestPress">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Incline Chest Press</h4>
</div>
<div class="collapse" id="inclineChestPress">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Incline Chest Press</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/incline-chest-press.gif" alt="Incline Chest Press " />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> Lie on a bench with an incline with a dumbbell in each hand. Then lift the dumbbells shoulder-width apart, arms extended and rotate your wrists so that the palms of your hands are facing each other. Stay in control of the dumbbells at all times and slowly lower the weights while inhaling. Then exhale pushing the dumbbells upwards with the help of your chest.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#inclineChestPress">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 9 -->
<div class="mx-auto" data-toggle="collapse" data-target="#chestFly">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Chest Fly</h4>
</div>
<div class="collapse" id="chestFly">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Chest Fly</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/chest-fly.gif" alt="Chest Fly" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong>Lie on a flat bench with a dumbbell in each hand, palms facing each other. Extend the arms above your chest, shoulder-width apart but keep your elbows flexible at all times (do not lock your elbows). Then lower your arms on both sides in a wide arc until you feel a stretch in your chest and then bring the dumbbells back up. Keep in mind to do the movement to the level of the shoulder joint, and not at the arms and elbows.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#chestFly">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- exercise 10-->
<div class="mx-auto" data-toggle="collapse" data-target="#inclineChestFly">
<div class="text-center bg-dark border border-light"><h4 class="text-white rubik-font p-1">Incline Chest Fly</h4>
</div>
<div class="collapse" id="inclineChestFly">
<div class="card mb-3">
<div class="card-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Card - Title-->
<h2 class="text-secondary text-uppercase mb-0">Incline Chest Fly</h2><br><br>
<!-- Card - Image-->
<img class="img-fluid rounded mb-5" src="images/incline-chest-fly.gif" alt="Incline Chest Fly" />
<!-- Card - Text-->
<p class="mb-5 font-weight-bold">Primary muscle group(s):Pectoralis Major & Minor</p>
<p class="mb-5 text-justify"><strong>How to do it:<br></strong> Lie on a bench with an incline with a dumbbell in each hand, palms facing each other. Extend the arms above your chest, to the width of your shoulders but keep your elbows flexible at all times (do not lock your elbows). Then lower your arms on both sides in a wide arc until you feel a stretch in your chest and then bring the dumbbells back up. Keep in mind to do the movement to the level of the shoulder joint, and not at the arms and elbows.
<div>
<button class="btn btn-secondary" data-toggle="collapse" data-target="#inclineChestFly">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="feature-modal modal fade" id="hmChestModal" tabindex="-1" role="dialog" aria-labelledby="hmChestModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content my-4">
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body mt-2 text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Modal - Title-->
<h2 class="feature-modal-title text-secondary text-uppercase mb-0">Chest</h2><br><br>
<!-- Modal - Image-->
<img class="img-fluid rounded mb-5" src="images/hm_chest.gif" alt="Biceps" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</body>
</html>