-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.html
84 lines (80 loc) · 3.79 KB
/
classes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Alice&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css"></style>
<title>Wildheart Yoga & Fitness</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html"><h4>Wildheart Yoga & Fitness</h4></a>
</div>
<ul class="nav-links">
<li><a href="classes.html">Classes</a></li>
<li><a href="instructors.html">Instructors</a></li>
<li><a href="join.html">Sign Up</a></li>
</ul>
</nav>
</header>
<main>
<section class="class-section">
<article>
<div>
<h1>L1ft</h1>
<p>L1FT workouts involve high repetitions of relatively low weights (bar and weight plates or dumbbells), which reduces the chance of injury but still allows you to access the many benefits of resistance training.</p>
</div>
<img src="img/l1ft.jpg" alt="l1ft">
</article>
<article>
<div>
<h1>PiYo</h1>
<p>PiYo was developed by Chalene Johnson as part of Beachbody, and combines the muscle-sculpting, core-firming benefits of Pilates with the strength and flexibility advantages of yoga. It is a low-impact workout that strengthens and sculpts the body, while enhancing flexibility.</p>
</div>
<img src="img/piyo.jpg" alt="piyo">
</article>
<article>
<div>
<h1>Pound</h1>
<p>Channel your inner rockstar with this full body cardio-jam session inspired by the infectious, energizing, and sweat-dripping fun of playing the drums.Instead of listening to music, you become the music in this exhilarating full-body workout that combines cardio, conditioning, and strength training with yoga and pilates-inspired movements. Using Ripstix®, lightly weighted drumsticks engineered specifically for exercising, POUND transforms drumming into an incredibly effective way of working out.</p>
</div>
<img src="img/pound.jpg" alt="pound">
</article>
<article>
<div>
<h1>Turbokick</h1>
<p>Turbokick is a high energy, full body workout, that combines kickboxing and simple dance moves set to heart pounding dance music. It will leave you covered in sweat and looking forward to your next workout!</p>
</div>
<img src="img/turbokick.jpg" alt="turbokick">
</article>
<article>
<div>
<h1>Yoga</h1>
<p>Yoga is a flow/sequence based class with an emphasis on mobility and strength. This class is great for all levels and allows students to focus on the alignment of body, breath and mind.</p>
<p>Yoga sculpt is a sequence based class that kicks it up a notch with the addition of hand weights(optional). Along with upbest music, this energetic class focuses on body sculpting poses while rooted in mindful movement.</p>
</div>
<img src="img/yoga.jpg" alt="yoga">
</article>
<article>
<div>
<h1>Zumba</h1>
<p>Zumba is a Latin-inspired cardio-dance workout that uses music and choreographed steps to form a fitness party atmosphere. While many of the types of dance and music featured in the program are Latin American inspired, classes can also contain everything from jazz to African beats to country to hip-hop and pop. No dance experience or skills are necessary.</p>
</div>
<img src="img/zumba.jpg" alt="zumba">
</article>
</section>
</main>
<footer>
<address>
<p>Wildheart Yoga & Fitness</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<p>St. John's, NL & Ottawa, ON</p>
<p>Canada</p>
</address>
</footer>
</body>
</html>