-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
390 lines (379 loc) · 13.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<script src="https://unpkg.com/scrollreveal"></script>
<title>YOGALAX</title>
</head>
<body>
<nav>
<div class="nav__logo">
<img src="assets/logo.png" alt="logo" />
<span>YOGALAX</span>
</div>
<ul class="nav__links">
<li class="link"><a href="#home">Home</a></li>
<li class="link"><a href="#classes">Classes</a></li>
<li class="link"><a href="#membership">Membership</a></li>
<li class="link"><a href="#stories">About</a></li>
<li class="link"><a href="#posts">Blog</a></li>
<li class="link"><a href="#contact">Contact</a></li>
</ul>
</nav>
<header id="home">
<div class="section__container header__container">
<div class="header__content">
<h1>Impactful YOGA</h1>
<h2>Transform Your Life, One Pose at a Time.</h2>
<button class="btn">20-Days free trial</button>
</div>
<div class="header__image">
<img src="assets/header.png" alt="header" />
</div>
</div>
</header>
<section class="section__container why__container">
<div class="why__image">
<img src="assets/why.png" alt="why yoga" />
</div>
<div class="why__content">
<h2 class="section__header">Why You Should Go To Yoga?</h2>
<p>
The fast-paced world of today makes it simple to become engrossed
in the everyday commotion. Yoga provides a haven of tranquility and
serenity where you can take a moment to reflect and breathe.
Centering the body and calming the mind can be achieved via the
practice of focused breathing and gentle exercise. I experience a
profound sensation of calmness following every yoga practice that
lasts the entire day. I have found that having this inner serenity
has greatly increased my ability to handle life's obstacles with
grace and tolerance. No matter how much turmoil is going on around
me, yoga teaches me to stop, breathe, and rediscover my core.
</p>
<ul>
<li>
<span><i class="ri-checkbox-circle-fill"></i></span>
Yoga boosts brain power
</li>
<li>
<span><i class="ri-checkbox-circle-fill"></i></span>
Yoga helps you to breathe better
</li>
<li>
<span><i class="ri-checkbox-circle-fill"></i></span>
Yoga improves your strength
</li>
<li>
<span><i class="ri-checkbox-circle-fill"></i></span>
Yoga helps you to focus
</li>
<li>
<span><i class="ri-checkbox-circle-fill"></i></span>
Yoga helps give meaning to your day
</li>
</ul>
</div>
</section>
<section class="hero" id="hero">
<div class="section__container hero__container">
<div class="hero__card">
<span><img src="assets/icon-1.png" alt="hero" /></span>
<h4>Healthy Lifestyle</h4>
<p>
Embrace a healthy lifestyle through the transformative power of yoga
and cultivate physical vitality and inner peace.
</p>
</div>
<div class="hero__card">
<span><img src="assets/icon-2.png" alt="hero" /></span>
<h4>Body & Mind Balance</h4>
<p>
Through purposeful poses and mindful breathing, yoga cultivates a
strong, flexible body while nurturing inner calm.
</p>
</div>
<div class="hero__card">
<span><img src="assets/icon-3.png" alt="hero" /></span>
<h4>Meditation Practice</h4>
<p>
Discover inner serenity and mindfulness as you cultivate a profound
connection with the present moment.
</p>
</div>
<div class="hero__card">
<span><img src="assets/icon-4.png" alt="hero" /></span>
<h4>Self-Care</h4>
<p>
Discover the transformative power of self-care through yoga and
embrace moments of tranquility and mindfulness.
</p>
</div>
</div>
</section>
<section class="section__container classes__container" id="classes">
<p class="section__subheader">YOGA CLASSES</p>
<h2 class="section__header">Choose Your Level & Focus</h2>
<div class="classes__grid">
<div class="classes__image">
<img src="assets/classes-1.jpg" alt="classes" />
<div class="classes__content">
<button class="btn classes__btn">View More</button>
</div>
</div>
<div class="classes__image">
<img src="assets/classes-2.jpg" alt="classes" />
<div class="classes__content">
<button class="btn classes__btn">View More</button>
</div>
</div>
<div class="classes__image">
<img src="assets/classes-3.jpg" alt="classes" />
<div class="classes__content">
<button class="btn classes__btn">View More</button>
</div>
</div>
<div class="classes__image">
<img src="assets/classes-4.jpg" alt="classes" />
<div class="classes__content">
<button class="btn classes__btn">View More</button>
</div>
</div>
<div class="classes__image">
<img src="assets/classes-5.jpg" alt="classes" />
<div class="classes__content">
<button class="btn classes__btn">View More</button>
</div>
</div>
<div class="classes__image">
<img src="assets/classes-6.jpg" alt="classes" />
<div class="classes__content">
<button class="btn classes__btn">View More</button>
</div>
</div>
</div>
</section>
<section class="membership" id="membership">
<div class="section__container membership__container">
<p class="section__subheader">PRICING TABLE</p>
<h2 class="section__header">Membership Cards</h2>
<div class="membership__grid">
<div class="membership__card">
<h4>YEAR CARD</h4>
<h2><sup>Rs</sup>8000</h2>
<h3>For 1 Year</h3>
<h4>ENJOY ALL THE FEATURES</h4>
<p>Free access to all club</p>
<p>Group trainer</p>
<p>Book a group class</p>
<p>Fitness orientation</p>
<button class="btn membership__btn">GET STARTED</button>
</div>
<div class="membership__card">
<h4>MONTHLY CARD</h4>
<h2><sup>Rs</sup>700</h2>
<h3>For 1 Month</h3>
<h4>ENJOY ALL THE FEATURES</h4>
<p>Group classes</p>
<p>Discuss fitness goals</p>
<p>Group trainer</p>
<p>Fitness orientation</p>
<button class="btn membership__btn">GET STARTED</button>
</div>
<div class="membership__card">
<h4>WEEKLY CARD</h4>
<h2><sup>Rs</sup>200</h2>
<h3>For 1 Week</h3>
<h4>ENJOY ALL THE FEATURES</h4>
<p>Access to yoga area</p>
<p>Group trainer</p>
<p>Group classes</p>
<p>Fitness orientation</p>
<button class="btn membership__btn">GET STARTED</button>
</div>
</div>
</div>
</section>
<section class="section__container stories__container" id="stories">
<p class="section__subheader">TESTIMONY</p>
<h2 class="section__header">Successful Stories</h2>
<div class="stories__grid">
<div class="stories__card">
<div class="stories__content">
<span><i class="ri-double-quotes-l"></i></span>
<p>
Achieving whole body, mind, and spirit balance and
harmony can be accomplished through yoga. Yoga teaches us
to both cure and endure—that which needs not be endured.
</p>
</div>
<div class="stories__author">
<img src="assets/bks-iyengar.png" alt="author" />
<div class="stories__author__details">
<h4>B.K.S. Iyengar</h4>
<h6>Founder of "Iyengar Yoga"</h6>
</div>
</div>
</div>
<div class="stories__card">
<div class="stories__content">
<span><i class="ri-double-quotes-l"></i></span>
<p>
Achieving whole body, mind, and spirit balance and harmony can
be accomplished through yoga. Yoga teaches us to both cure and
endure—that which needs not be endured.
"Unity is what yoga signifies. Your life will convey joy and
fulfillment once you understand yoga."
</p>
</div>
<div class="stories__author">
<img src="assets/sadhguru.jpeg" alt="author" />
<div class="stories__author__details">
<h4>Sadhguru</h4>
<h6>Founder of Isha Foundation</h6>
</div>
</div>
</div>
<div class="stories__card">
<div class="stories__content">
<span><i class="ri-double-quotes-l"></i></span>
<p>
Yoga offers a whole-person approach to wellbeing and health.
"Yoga is the journey of the self, through the self, to the self."
</p>
</div>
<div class="stories__author">
<img src="assets/baba ramdev.png" alt="author" />
<div class="stories__author__details">
<h4>Baba Ramdev</h4>
<h6>Founder of Patanjali Ayurved Ltd.</h6>
</div>
</div>
</div>
</div>
</section>
<section class="banner">
<div class="section__container banner__container">
<div class="banner__card">
<h4>10,000</h4>
<p>Happy Customers</p>
</div>
<div class="banner__card">
<h4>50</h4>
<p>Yoga Workshops</p>
</div>
<div class="banner__card">
<h4>25</h4>
<p>Years of Experience</p>
</div>
<div class="banner__card">
<h4>920</h4>
<p>Lesson Conducted</p>
</div>
</div>
</section>
<section class="posts" id="posts">
<div class="section__container posts__container">
<p class="section__subheader">BLOG</p>
<h2 class="section__header">Recent Posts</h2>
<div class="posts__grid">
<div class="posts__card">
<img src="assets/posts-1.jpg" alt="post" />
<div class="posts__content">
<div class="posts__date">
<span>31</span>
<div>
<p>2021</p>
<p>December</p>
</div>
</div>
<h4>Unlocking Inner Peace</h4>
<p>
Dive into the practices that help you cultivate inner peace,
reduce stress, and enhance your overall well-being.
</p>
</div>
</div>
<div class="posts__card">
<img src="assets/posts-2.jpg" alt="post" />
<div class="posts__content">
<div class="posts__date">
<span>25</span>
<div>
<p>2022</p>
<p>March</p>
</div>
</div>
<h4>From Desk to Mat</h4>
<p>
Learn incorporating simple yoga stretches and breathing
techniques to counter effects of sedentary lifestyle.
</p>
</div>
</div>
<div class="posts__card">
<img src="assets/posts-3.jpg" alt="post" />
<div class="posts__content">
<div class="posts__date">
<span>06</span>
<div>
<p>2022</p>
<p>August</p>
</div>
</div>
<h4>Yoga Through the Ages</h4>
<p>
From prenatal yoga to gentle senior yoga, discover enhance
flexibility and foster a lifelong love for well-being.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="section__container photos__container">
<p class="section__subheader">GALLERY</p>
<h2 class="section__header">See The Latest Photos</h2>
<div class="photos__grid">
<div class="photos__card">
<img src="assets/photos-1.jpg" alt="photo" />
</div>
<div class="photos__card">
<img src="assets/photos-2.jpg" alt="photo" />
</div>
<div class="photos__card">
<img src="assets/photos-3.jpg" alt="photo" />
</div>
<div class="photos__card">
<img src="assets/photos-4.jpg" alt="photo" />
</div>
</div>
</section>
<footer class="footer" id="contact">
<div class="section__container footer__container">
<div class="footer__col">
<div class="footer__logo"><a href="#">YOGALAX</a></div>
</div>
<div class="footer__col">
<p>Kusum Khera, Haldwani, Uttarakhand, INDIA</p>
</div>
<div class="footer__col">
<div class="footer__socials">
<a href="#"><i class="ri-twitter-fill"></i></a>
<a href="#"><i class="ri-facebook-fill"></i></a>
<a href="https://www.instagram.com/gouravista/" target="_blank"><i class="ri-instagram-line"></i></a>
</div>
</div>
</div>
<div class="section__container footer__bar">
Copyright © 2022 Gourav Singh Dosad. All rights reserved.
</div>
</footer>
<script src="main.js"></script>
</body>
</html>