-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhybrid-training.html
More file actions
132 lines (120 loc) · 5 KB
/
hybrid-training.html
File metadata and controls
132 lines (120 loc) · 5 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
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>FitSphere</title>
<link rel="stylesheet" href="stylesheets/workout.css">
</head>
<body>
<nav class="navbar">
<div class="logo">
<img src ="assets/logo.png"alt ="My Logo" >
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<div class="dropdown">
<a href="programs.html">Programs</a>
<ul list class="dropdown-menu">
<li><a href="basic.html">Basic</a></li>
<li><a href="pro.html">Pro</a></li>
<li><a href="proplus.html">ProPlus</a></li>
</ul>
</div>
<a href="diet.html">Diet</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<main>
<section class="workout-intro">
<h2>Overview</h2>
<p>Hybrid Training is designed for advanced athletes looking to combine strength training with cardiovascular conditioning for increased power, endurance, and overall athletic performance. It blends powerlifting, bodybuilding, and high-intensity interval training (HIIT) into one comprehensive workout program.</p>
</section>
<section class="workout-plan">
<h2>Workout Schedule</h2>
<ul>
<li><strong>Day 1:</strong> Powerlifting (Squat + Accessory Movements)</li>
<li><strong>Day 2:</strong> HIIT + Core Work</li>
<li><strong>Day 3:</strong> Powerlifting (Bench Press + Accessory Movements)</li>
<li><strong>Day 4:</strong> HIIT + Mobility Work</li>
<li><strong>Day 5:</strong> Powerlifting (Deadlift + Accessory Movements)</li>
</ul>
</section>
<h2>Detailed Exercises</h2>
<section class="detailed-workout">
<section class="days">
<h3>Day 1: Powerlifting (Squat + Accessory Movements)</h3>
<ul>
<li>Back Squats: 5 sets of 5 reps</li>
<li>Walking Lunges: 3 sets of 12 reps per leg</li>
<li>Leg Press: 4 sets of 10 reps</li>
<li>Glute Bridges: 3 sets of 15 reps</li>
</ul>
</section>
<section class="days">
<h3>Day 2: HIIT + Core Work</h3>
<ul>
<li>20-Minute HIIT Session (e.g., Sprints, Burpees, Jumping Jacks)</li>
<li>Plank: 3 sets of 60 seconds</li>
<li>Russian Twists: 3 sets of 20 reps per side</li>
<li>Leg Raises: 3 sets of 15 reps</li>
</ul>
</section>
<section class="days">
<h3>Day 3: Powerlifting (Bench Press + Accessory Movements)</h3>
<ul>
<li>Flat Bench Press: 5 sets of 5 reps</li>
<li>Incline Dumbbell Press: 4 sets of 8 reps</li>
<li>Chest Dips: 3 sets to failure</li>
<li>Tricep Pushdowns: 3 sets of 10 reps</li>
</ul>
</section>
<section class="days">
<h3>Day 4: HIIT + Mobility Work</h3>
<ul>
<li>30-Minute HIIT Session (e.g., Battle Ropes, Kettlebell Swings, Jump Rope)</li>
<li>Foam Rolling: 15 minutes</li>
<li>Dynamic Stretches (e.g., leg swings, hip openers)</li>
</ul>
</section>
<section class="days">
<h3>Day 5: Powerlifting (Deadlift + Accessory Movements)</h3>
<ul>
<li>Deadlifts: 5 sets of 5 reps</li>
<li>Romanian Deadlifts: 3 sets of 8 reps</li>
<li>Pull-Ups: 3 sets to failure</li>
<li>Barbell Rows: 3 sets of 8 reps</li>
</ul>
</section>
</section>
<section class="tips">
<h2>Tips for Success</h2>
<ul>
<li>Hybrid training requires proper recovery—ensure you're eating enough protein and sleeping well.</li>
<li>Focus on both your strength and conditioning; they are equally important in this program.</li>
<li>Use progressive overload to keep making gains in strength and muscular endurance.</li>
<li>Listen to your body—if you're fatigued, prioritize rest and mobility work to avoid overtraining.</li>
</ul>
</section>
</main>
<div class="footer">
<div class="footer-links">
<div>
<h3>Services</h3>
<a href="programs.html">Programs</a>
</div>
<div>
<h3>Support</h3>
<a href="contact.html">Contact</a>
</div>
<div>
<h3>Learn More</h3>
<a href="about.html">About</a>
</div>
</div>
</div>
<p class="copyright">
©️ COPYRIGHT 2024. ALL RIGHTS RESERVED.</p>
</body>
</html>