-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclasses.html
More file actions
112 lines (109 loc) · 3.98 KB
/
Copy pathclasses.html
File metadata and controls
112 lines (109 loc) · 3.98 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
<!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">
<meta name="description" content="mind and body club, for yoga, pilates, meditation and mindfulness">
<meta name="keywords" content="mind and body, yoga, pilates, meditation, mindfulness">
<link rel="stylesheet" href="assets/css/style.css">
<title>Mind&Body</title>
</head>
<body>
<!-- Header and icon navigation -->
<header>
<a href="index.html">
<h1 id="logo">Mind & Body</h1>
</a>
<nav id="menu">
<ul>
<li><a href="signup.html">Sign Up</a></li>
<li><a href="classes.html" class="active">Classes</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<!-- Club classes section -->
<section id="club-classes">
<div id="header-image"></div>
<div id="classes-header">
<h2>Classes and the exercises involved!</h2>
</div>
</section>
<section id="classes-section">
<div id="left-classes">
<h2>Yoga exercises <i class="fa-solid fa-heart"></i></h2>
<div>
<h3>Top 10 yoga poses:</h3>
<ol>
<li> Mountain Pose (Tadasana)</li>
<li>Raised arms pose (urdhva hastasana)</li>
<li>Standing Forward Bend (Uttanasana) </li>
<li>Garland Pose (Malasana)</li>
<li>High Lunge Pose </li>
<li>Plank</li>
<li>Staff Pose </li>
<li>Seated Forward Bend (Paschimottanasana) </li>
<li>Head To Knee Pose (Janu Sirsasana) </li>
<li>Happy Baby Pose (Ananda Balasana) </li>
</ol>
</div>
</div>
<div id="right-classes">
<h2>Pilates exercises <i class="fa-solid fa-dumbbell"></i></h2>
<div>
<h3>Top 10 pilates exercises:</h3>
<ol>
<li>Breathing</li>
<li>Shoulder bridge preparation</li>
<li>Leg lifts</li>
<li>Toe taps</li>
<li>Single leg stretch</li>
<li>One leg circle</li>
<li>Side bend preparation</li>
<li>Sidekick</li>
<li>Side leg lifts</li>
<li>Swan dive</li>
</ol>
</div>
</div>
</section>
<h3 class="prices">PRICES:</h3>
<table id="center-classes">
<tr>
<th>Lessons</th>
<th>Mon-Fri</th>
<th>Saturdays</th>
</tr>
<tr>
<td>Yoga</td>
<td>£30 per session</td>
<td>£35 per session</td>
</tr>
<tr>
<td>Pilates</td>
<td>£30 per session</td>
<td>£35 per session</td>
</tr>
</table>
<!-- Social network links -->
<footer>
<h2>CONTACT US</h2>
<hr>
<h3>Got a question? Get in touch through our media sites!</h3>
<ul class="social-networks">
<li >
<a href="http://facebook.com" target="facebook" rel="noopener" aria-label="visit our facebook page (opens in a new tab)"><i class="fa-brands fa-square-facebook"></i></a>
</li>
<li >
<a href="http://twitter.com" target="twitter" rel="noopener" aria-label="visit our twitter page (opens in a new tab)"><i class="fa-brands fa-square-twitter"></i></a>
</li>
<li >
<a href="http://instagram.com" target="instagram" rel="noopener" aria-label="visit our instagram page (opens in a new tab)"><i class="fa-brands fa-square-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/62b6c595da.js" crossorigin="anonymous"></script>
</body>
</html>