-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
741 lines (499 loc) Β· 20.8 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
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
<!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">
<title>Club</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Catamaran:wght@600;700;800;900&family=Rubik:wght@400;500;800&display=swap"
rel="stylesheet">
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/hero-banner.png">
<link rel="preload" as="image" href="./assets/images/hero-circle-one.png">
<link rel="preload" as="image" href="./assets/images/hero-circle-two.png">
<link rel="preload" as="image" href="./assets/images/heart-rate.svg">
<link rel="preload" as="image" href="./assets/images/calories.svg">
<style>
</style>
</head>
<body id="top">
<!-- loader -->
<section class="parentswrapper" id="containerLoader">
<div class="loader">
<div class="loading one"></div>
<div class="loading two"></div>
<div class="loading three"></div>
<div class="loading four"></div>
</div>
</section>
<!-- finished -->
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" class="logo">
<ion-icon name="barbell-sharp" style="color: #f9ab03;" color aria-hidden="true"></ion-icon>
<span class="span">Club Box M...</span>
</a>
<nav class="navbar" data-navbar>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<ion-icon name="close-sharp" aria-hidden="true"></ion-icon>
</button>
<ul class="navbar-list">
<li>
<a href="#home" class="navbar-link active" data-nav-link>Home</a>
</li>
<li>
<a href="#about" class="navbar-link" data-nav-link>About Us</a>
</li>
<li>
<a href="#class" class="navbar-link" data-nav-link>Classes</a>
</li>
<li>
<a href="#blog" class="navbar-link" data-nav-link>Blog</a>
</li>
<li>
<a href="#" class="navbar-link" data-nav-link>Contact Us</a>
</li>
</ul>
</nav>
<a href="https://api.whatsapp.com/send?phone=0661945254&text=Hello%20there!" class="btn btn-secondary">Join Now</a>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</button>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<div id="home1" class="home"></div>
<div id="home2" class="home"></div>
<section class="container1" id="home" aria-label="hero" data-section>
<div class="titleHome">
<h1 class="title">Win at the Gym!</h1>
<p>Push yourself today and your future self will thank you.
Every drop of sweat is a step closer to your goals. Let's make progress together!</p>
</div>
</section>
<!--
- #ABOUT
-->
<section class="section about" id="about" aria-label="about">
<div class="container">
<div class="about-banner has-after">
<img src="./assets/images/manFitness-removebg-preview.png" width="660" height="648" loading="lazy" alt="about banner"
class="w-100">
<img src="./assets/images/circle1.png" width="660" height="534" loading="lazy" aria-hidden="true"
alt="" class="circle circle-1">
<img src="./assets/images/circle2.png" width="660" height="534" loading="lazy" aria-hidden="true"
alt="" class="circle circle-2">
<img src="./assets/images/fitness.png" width="650" height="154" loading="lazy" alt="fitness"
class="abs-img w-100">
</div>
<div class="about-content">
<p class="section-subtitle">About Us</p>
<h2 class="h2 section-title">Welcome To Our Fitness Gym</h2>
<p class="section-text">
Welcome to Club Box mΓ©diterranΓ©e - Where Fitness Meets Fun!
Get ready to transform your body and your life with our
state-of-the-art facilities, expert trainers, and motivating
classes. Whether you're a beginner or a seasoned gym-goer, we
have everything you need to reach your fitness goals. Join our
community today and start your journey to a healthier, happier you!
</p>
<p class="section-text">
Strength doesn't come from what you can do. It comes from overcoming the things you once thought you couldn't.
</p>
<div class="wrapper">
<div class="about-coach">
<figure class="coach-avatar">
<img src="./assets/images/about-coach.jpg" width="65" height="65" loading="lazy" alt="Trainer">
</figure>
<div>
<h3 class="h3 coach-name">karim hajji</h3>
<p class="coach-title">Our Coach</p>
</div>
</div>
<a href="#" class="btn btn-primary">Explore More</a>
</div>
</div>
</div>
</section>
<!--
- #VIDEO
-->
<section class="section video" aria-label="video">
<div class="container">
<div class="video-card has-before has-bg-image"
style="background-image: url('./assets/images/video-banner.jpg')">
<h2 class="h2 card-title">Explore Fitness Life</h2>
<button class="play-btn" aria-label="play video">
<ion-icon name="play-sharp" aria-hidden="true"></ion-icon>
</button>
<a href="#" class="btn-link has-before">Watch More</a>
</div>
</div>
</section>
<!--
- #CLASS
-->
<section class="section class bg-dark has-bg-image" id="class" aria-label="class"
style="background-image: url('./assets/images/classes-bg.png')">
<div class="container">
<p class="section-subtitle">Our Classes</p>
<h2 class="h2 section-title text-center">Fitness Classes For Every Goal</h2>
<ul class="class-list has-scrollbar">
<li class="scrollbar-item">
<div class="class-card">
<figure class="card-banner img-holder" style="--width: 416; --height: 240;">
<img src="./assets/images/weightGym.jpeg" width="416" height="240" loading="lazy" alt="Weight Lifting"
class="img-cover">
</figure>
<div class="card-content">
<div class="title-wrapper">
<img src="./assets/images/class-icon-1.png" width="52" height="52" aria-hidden="true" alt=""
class="title-icon">
<h3 class="h3">
<a href="#" class="card-title">Weight Lifting</a>
</h3>
</div>
<p class="card-text">
Build strength with weights! Lift or do push-ups for a toned body. Join us and discover your power!
</p>
<div class="card-progress">
<div class="progress-wrapper">
<p class="progress-label">Class Full</p>
<span class="progress-value">85%</span>
</div>
<div class="progress-bg">
<div class="progress-bar" style="width: 85%"></div>
</div>
</div>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="class-card">
<figure class="card-banner img-holder" style="--width: 416; --height: 240;">
<img src="./assets/images/cardioGym.webp" width="416" height="240" loading="lazy" alt="Cardio & Strenght"
class="img-cover">
</figure>
<div class="card-content">
<div class="title-wrapper">
<img src="./assets/images/class-icon-2.png" width="52" height="52" aria-hidden="true" alt=""
class="title-icon">
<h3 class="h3">
<a href="#" class="card-title">Cardio & Strenght</a>
</h3>
</div>
<p class="card-text">
Achieve fitness goals with our versatile workouts. Join us to unlock your potential!
</p>
<div class="card-progress">
<div class="progress-wrapper">
<p class="progress-label">Class Full</p>
<span class="progress-value">70%</span>
</div>
<div class="progress-bg">
<div class="progress-bar" style="width: 70%"></div>
</div>
</div>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="class-card">
<figure class="card-banner img-holder" style="--width: 416; --height: 240;">
<img src="./assets/images/yogaGym.jpeg" width="416" height="240" loading="lazy" alt="Power Yoga"
class="img-cover">
</figure>
<div class="card-content">
<div class="title-wrapper">
<img src="./assets/images/class-icon-3.png" width="52" height="52" aria-hidden="true" alt=""
class="title-icon">
<h3 class="h3">
<a href="#" class="card-title">Power Yoga</a>
</h3>
</div>
<p class="card-text">
Transform your fitness journey with our dynamic workouts. Join us and discover your strength!
</p>
<div class="card-progress">
<div class="progress-wrapper">
<p class="progress-label">Class Full</p>
<span class="progress-value">90%</span>
</div>
<div class="progress-bg">
<div class="progress-bar" style="width: 90%"></div>
</div>
</div>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="class-card">
<figure class="card-banner img-holder" style="--width: 416; --height: 240;">
<img src="./assets/images/class-4.jpg" width="416" height="240" loading="lazy" alt="The Fitness Pack"
class="img-cover">
</figure>
<div class="card-content">
<div class="title-wrapper">
<img src="./assets/images/class-icon-4.png" width="52" height="52" aria-hidden="true" alt=""
class="title-icon">
<h3 class="h3">
<a href="#" class="card-title">The Fitness Pack</a>
</h3>
</div>
<p class="card-text">
Unlock your strength with our versatile workouts. Join us and transform your fitness journey!
</p>
<div class="card-progress">
<div class="progress-wrapper">
<p class="progress-label">Class Full</p>
<span class="progress-value">60%</span>
</div>
<div class="progress-bg">
<div class="progress-bar" style="width: 60%"></div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<!--
- #BLOG
-->
<section class="section blog" id="blog" aria-label="blog">
<div class="container">
<p class="section-subtitle">Our News</p>
<h2 class="h2 section-title text-center">Latest Blog Feed</h2>
<ul class="blog-list has-scrollbar">
<li class="scrollbar-item">
<div class="blog-card">
<div class="card-banner img-holder" style="--width: 440; --height: 270;">
<img src="./assets/images/blog-1.jpg" width="440" height="270" loading="lazy"
alt="Going to the gym for the first time" class="img-cover">
<time class="card-meta" datetime="2022-07-07">7 July 2022</time>
</div>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Going to the gym for the first time</a>
</h3>
<p class="card-text">
Heading to the gym for the first time? No worries! Our quick guide will help you navigate your debut with ease.
</p>
<a href="#" class="btn-link has-before">Read More</a>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<div class="card-banner img-holder" style="--width: 440; --height: 270;">
<img src="./assets/images/accumsan.jpeg" width="440" height="270" loading="lazy"
alt="Parturient accumsan cacus pulvinar magna" class="img-cover">
<time class="card-meta" datetime="2022-07-07">7 July 2022</time>
</div>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">First Gym Visit Guide</a>
</h3>
<p class="card-text">
Embarking on your fitness journey? Here's your essential guide to navigating the gym for a successful debut.
</p>
<a href="#" class="btn-link has-before">Read More</a>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<div class="card-banner img-holder" style="--width: 440; --height: 270;">
<img src="./assets/images/purus.jpeg" width="440" height="270" loading="lazy"
alt="Risus purus namien parturient accumsan cacus" class="img-cover">
<time class="card-meta" datetime="2022-07-07">7 July 2022</time>
</div>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Newbie's Gym Adventure</a>
</h3>
<p class="card-text">
Dive into your fitness journey with confidence! Here's a roadmap for your inaugural gym visit.
</p>
<a href="#" class="btn-link has-before">Read More</a>
</div>
</div>
</li>
</ul>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
<div class="section footer-top bg-dark has-bg-image" style="background-image: url('./assets/images/footer-bg.png')">
<div class="container">
<div class="footer-brand">
<a href="#" class="logo">
<ion-icon name="barbell-sharp" aria-hidden="true"></ion-icon>
<span class="span">Fitlife</span>
</a>
<p class="footer-brand-text">
Flexible hours from dawn till dusk. Get your workout in whenever it suits you best!
</p>
<div class="wrapper">
<!-- <img src="./assets/images/footer-clock.png" width="34" height="34" loading="lazy" alt="Clock"> -->
<ul class="footer-brand-list">
<li>
<p class="footer-brand-title">Monday - Friday</p>
<p>7:00Am - 10:00Pm</p>
</li>
<li>
<p class="footer-brand-title">Saturday - Sunday</p>
<p>7:00Am - 2:00Pm</p>
</li>
</ul>
</div>
</div>
<ul class="footer-list">
<li>
<p class="footer-list-title has-before">Our Links</p>
</li>
<li>
<a href="#" class="footer-link">Home</a>
</li>
<li>
<a href="#" class="footer-link">About Us</a>
</li>
<li>
<a href="#" class="footer-link">Classes</a>
</li>
<li>
<a href="#" class="footer-link">Blog</a>
</li>
<li>
<a href="#" class="footer-link">Contact Us</a>
</li>
</ul>
<ul class="footer-list">
<li>
<p class="footer-list-title has-before">Contact Us</p>
</li>
<li class="footer-list-item">
<div class="icon">
<ion-icon name="location" aria-hidden="true"></ion-icon>
</div>
<address class="address footer-link">
mΓ©diterranΓ©e club martil oued mellah
</address>
</li>
<li class="footer-list-item">
<div class="icon">
<ion-icon name="call" aria-hidden="true"></ion-icon>
</div>
<div>
<a href="tel:18001213637" class="footer-link">+212 617591321</a>
<a href="tel:+915552348765" class="footer-link">+212 617591321</a>
</div>
</li>
<li class="footer-list-item">
<div class="icon">
<ion-icon name="mail" aria-hidden="true"></ion-icon>
</div>
<div>
<a href="abdelkarim.hujji@gmail.com" class="footer-link">abdelkarim.hujji@gmail.com</a>
<a href="hajjikarim530@gmail.com" class="footer-link">hajjikarim530@gmail.com</a>
</div>
</li>
</ul>
<ul class="footer-list">
<li>
<p class="footer-list-title has-before">Our Newsletter</p>
</li>
<li>
<form action="" class="footer-form">
<input type="email" name="email_address" aria-label="email" placeholder="Email Address" required
class="input-field">
<button type="submit" class="btn btn-primary" aria-label="Submit">
<ion-icon name="chevron-forward-sharp" aria-hidden="true"></ion-icon>
</button>
</form>
</li>
<li>
<ul class="social-list">
<li>
<a href="https://www.instagram.com/club_mediterraneetetuan/" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="https://www.instagram.com/club_mediterraneetetuan/" class="social-link">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li>
<li>
<a href="https://www.instagram.com/club_mediterraneetetuan/" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<p class="copyright">
© 2022 Fitlife. All Rights Reserved By <a href="#" class="copyright-link">codewithsadee.</a>
</p>
<ul class="footer-bottom-list">
<li>
<a href="#" class="footer-bottom-link has-before">Privacy Policy</a>
</li>
<li>
<a href="#" class="footer-bottom-link has-before">Terms & Condition</a>
</li>
</ul>
</div>
</div>
</footer>
<!--
- #BACK TO TOP
-->
<a href="#top" class="back-top-btn" aria-label="back to top" data-back-top-btn>
<ion-icon name="caret-up-sharp" aria-hidden="true"></ion-icon>
</a>
<!--
- custom js link
-->
<script src="./assets/js/script.js" defer></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>