-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
499 lines (453 loc) · 26.3 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" >
<link rel="stylesheet" href="css/animate.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="css/animate.css">
<title>Power Zone</title>
<link rel="icon" type="image/x-icon" href="/img/favicon/barbell.png">
</head>
<body class="m-0 p-0 overflow-auto">
<!-- =============================================================================================================================
Navbar
============================================================================================================================== -->
<section class="heading mt-3 p-0 ">
<nav class="navbar align-items-center p-0">
<div class="navbar-container align-items-center m-0 p-0">
<input type="checkbox" name="" id="">
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<ul class="menu-items p-0">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#pricing">pricing</a></li>
<li><a href="#gallary">Gallary</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#about">About</a></li>
<li><a href="#branch">Branch</a></li>
</ul>
<a href="#home"><h1 class="logo m-4 mt-1 pt-1">Power Zone</h1></a>
</div>
</nav>
</section>
<!-- =============================================================================================================================
Home
============================================================================================================================== -->
<section id="home" class="overlay-home d-flex justify-center align-items-center">
<div class=" p-5 text-center container ">
<h1 class="tr-text mb-5 animate__animated wow animate__zoomIn">Don't limit your challenges.</h1>
<p class="prg p-3 animate__animated animate__fadeInUp"> If you want something you've never had, you must be willing to do something you've never
done</p>
<button type="button" class="btn btn-outline-warning ">View Plans</button>
</div>
</section>
<!-- =============================================================================================================================
services
============================================================================================================================== -->
<section id="services" class="">
<div class="container">
<div class=" p-5">
<h1 class="p-1 tr-text text-center wow animate__animated animate__zoomIn">WHAT WE OFFER</h1>
<p class="prg text-center p-2 pb-0 m-2 mt-5 mb-0 wow animate__animated animate__fadeIn">Lorem ipsum dolor sit amet consectetur adipisicing
elit.
Aut, cumque quod nemo similique consequatur vitae! Labore consectetur, facere ad adipisci,
exercitationem sit eos non harum repudiandae laudantium quasi molestiae officia.</p>
</div>
<div class="row ">
<div class="col-lg-4 col-md-6 wow animate__animated animate__zoomIn">
<div class="card-services position-static m-4 p-3">
<img src="/img/services/services-1.webp"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">weight loss</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of
the card's content.</p>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 wow animate__animated animate__zoomIn">
<div class="card-services position-static m-4 p-3">
<img src="/img/services/services-2.webp"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">muscle gain</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of
the card's content.</p>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
<div class="col-lg-4 wow animate__animated animate__zoomIn">
<div class="card-services position-static m-4 p-3">
<img src="/img/services/services-3.webp"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Cycling</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of
the card's content.</p>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
<div class="col-md-6 wow animate__animated animate__zoomIn">
<div class="card-services m-4 position-static p-3">
<img src="/img/services/services-4.webp"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Boxing</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of
the card's content.</p>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 wow animate__animated animate__zoomIn">
<div class="card-services m-4 position-static p-3">
<img src="/img/services/services-5.webp"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Body Building</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of
the card's content.</p>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============================================================================================================================
pricing
============================================================================================================================== -->
<section id="pricing" class=" pb-5">
<div class="container">
<br>
<h1 class="tr-text text-center mt-5 pricing-heading wow animate__animated animate__zoomIn">PRICING</h1>
<p class="prg mt-5 pt-5 pb-3 wow animate__animated animate__fadeIn">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Asperiores molestias
ut repellendus
perspiciatis ad harum libero corporis rem deleniti facilis. Voluptatibus nulla alias eos in fugit harum
soluta ratione quia.</p>
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
<div class="col wow animate__animated animate__fadeInLeft">
<div class="card-pricing mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 ">Free</h4>
</div>
<div class="card-body ">
<h1 class="card-title pricing-card-title">$0<small class="text-muted fw-light">/mo</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Free riding</li>
<li>Unlimited equipments</li>
<li>Personal trainer</li>
<li>Help center access</li>
<li>Month to mouth</li>
<li>Weight losing classes</li>
</ul>
<button type="button" class="btn-dark btn">join</button>
</div>
</div>
</div>
<div class="col wow animate__animated animate__fadeInUp">
<div class="card-pricing mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Pro</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$15<small class="text-muted fw-light">/mo</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Free riding</li>
<li>Unlimited equipments</li>
<li>Personal trainer</li>
<li>Help center access</li>
<li>Month to mouth</li>
<li>Weight losing classes</li>
</ul>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
<div class="col animate__fadeInRight wow animate__animated">
<div class="card-pricing mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Enter Price</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$15<small class="text-muted fw-light">/mo</small>
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Free riding</li>
<li>Unlimited equipments</li>
<li>Personal trainer</li>
<li>Help center access</li>
<li>Month to mouth</li>
<li>Weight losing classes</li>
</ul>
<button type="button" class="btn btn-dark">join</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============================================================================================================================
gallary
============================================================================================================================== -->
<section id="gallary" class="p-5 animate__animated wow animate__zoomIn">
<div class="container">
<div class="row ">
<div class="col-lg-4 col-md-6 ">
<img src="/img/gallary/g-1.webp"
class="rounded float-start img-fluid mt-3 p-0 border1 border-3" alt="...">
</div>
<div class="col-lg-4 col-md-6">
<img src="/img/gallary/g-2.webp"
class="rounded float-start img-fluid mt-3 p-0 border1 border-3" alt="...">
</div>
<div class="col-lg-4 col-md-6"> <img
src="/img/gallary/g-3.webp"
class="rounded float-start img-fluid mt-3 p-0 border1 border-3" alt="..."></div>
<div class="col-lg-6 col-md-6"><img
src="/img/gallary/g-4.webp"
class="rounded float-start img-fluid mt-3 p-0 border1 border-3" alt="..."></div>
<div class="col-lg-6 "><img
src="/img/gallary/g-5.webp"
class="rounded float-start img-fluid mt-3 responsive p-0 border1 border-3" alt="..."></div>
<div class="col-lg-8 col-md-8 d-block"><img
src="/img/gallary/g-6.webp"
class="rounded float-start container-fluid mt-3 p-0 border1 border-3" alt="..."></div>
<div class="col-lg-4 col-md-4 img-fluid"><img
src="/img/gallary/g-7.webp"
class="rounded float-start container-fluid img-fluid mt-3 mb-0 p-0 border1 border-3" alt="...">
<img src="/img/gallary/g-8.webp"
class="rounded float-start container-fluid mt-3 p-0 border1 border-3" alt="">
</div>
</div>
</div>
</section>
<!-- =============================================================================================================================
team
============================================================================================================================== -->
<section id="team" class="pt-5 pb-5">
<div class="container text-center">
<h1 class="tr-text mb-5 wow animate__animated animate__zoomIn">Our Team</h1>
<div class="">
<div class="row ">
<div class="col-md-6 col-lg-6 animate__jackInTheBox wow animate__animated ">
<div class="content zoom p-0 mt-5 mb-3">
<div class="content-overlay"></div> <img
class="content-image rounded float-start container-fluid p-0 border1 border-3"
src="/img/team/t-1.webp">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">Amelia Davis</h3>
<p class="content-text"><i class="fa fa-map-marker"></i> Nepal</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 animate__jackInTheBox wow animate__animated ">
<div class="content zoom p-0 mt-5 mb-3">
<div class="content-overlay"></div> <img
class="content-image rounded float-start container-fluid p-0 border1 border-3"
src="/img/team/t-2.webp">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">James Brown
</h3>
<p class="content-text"><i class="fa fa-map-marker"></i> Nepal</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 animate__jackInTheBox wow animate__animated ">
<div class="content overflow-hidden zoom p-0 mt-5 mb-3">
<div class="content-overlay"></div> <img
class="content-image rounded float-start container-fluid p-0 border1 border-3"
src="/img/team/t-3.webp">
<div class="content-details fadeIn-bottom">
<h3 class="content-title">William Smith</h3>
<p class="content-text"><i class="fa fa-map-marker"></i> Nepal</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 animate__jackInTheBox wow animate__animated ">
<div class="content zoom p-0 mt-5 mb-3 ">
<div class="">
<div class="content-overlay "></div> <img
class="content-image rounded float-start container-fluid p-0 border1 border-3"
src="/img/team/t-4.webp">
</div>
<div class="content-details fadeIn-bottom">
<h3 class="content-title">Benjamin Johnson</h3>
<p class="content-text"><i class="fa fa-map-marker"></i>Nepal</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============================================================================================================================
Photo
============================================================================================================================== -->
<section id="photo" class="w-100 h-100 overlay-photo wow animate__animated animate__fadeIn">
<div class="container leyer p-5 justify-center align-items-center">
<br><br><br><br>
<h1 class="wow animate__animated animate__bounceIn">PUSH YOUR LIMITS FORWARD</h1>
<p class="prg">If you think lifting is dangerous, try being weak. Being weak is dangerous</p>
<h3>REGISTRATION NOW TO GET MORE DEALS</h3>
<button type="button" class="btn btn-warning ">View Plans</button>
</div>
</section>
<!-- =============================================================================================================================
about
============================================================================================================================== -->
<section id="about" class="p-5">
<div class="container">
<h1 class="tr-text wow animate__animated animate__zoomIn"> About Us</h1>
<div class="row pt-5 pb-5 ">
<div class=" col-lg-6 wow animate__animated animate__fadeInLeft">
<div class="about-img m-3">
<img src="/img/about/about.jpg"
class=" rounded float-start container-fluid p-0 border1 border-3" alt="">
</div>
</div>
<div class=" col-lg-6 wow animate__animated animate__fadeInRight d-flex align-items-center">
<div class="about-contan m-3 align-items-center">
<h2>Best Gym of India</h2>
<br>
<p class="">A gym session or brisk walk can help. Physical activity stimulates various brain
chemicals that may leave you feeling happier, more relaxed and less anxious. You may also
feel better about your appearance and yourself when you exercise regularly, which can boost
your confidence and improve your self-esteem.</p>
<div class="row text-center">
<div class="col-md-4 col-sm-4 col-lg-4">
<h3>2.7K</h3>
<p>monthly subscriber</p>
</div>
<div class="col-md-4 col-sm-4 col-lg-4">
<h3>1.8K</h3>
<p>Yearly subscriber</p>
</div>
<div class="col-md-4 col-sm-4 col-lg-4">
<h3>4</h3>
<p>Coaches</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============================================================================================================================
Branch
============================================================================================================================== -->
<section id="branch" class=" p-5">
<h1 class="tr-text mb-5 animate__animated wow animate__zoomIn">Branches</h1>
<div class="row mx-auto ">
<div class=" col-lg-6 animate__animated wow animate__zoomIn">
<div class="row rounded d-flex justify-content-center align-items-center m-4">
<div class="col-lg-6 col-md-6 branch-img border1 d-flex justify-content-center"><img
class="cover rounded "
src="/img/branch/b-1.webp"
alt=""></div>
<div class="col-lg-6 col-md-6 align-items-center">
<div class="branch-contant">
<h2>Power Zone-1</h2>
<h5>Gujrat </h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa, adipisci.</p>
</div>
</div>
</div>
</div>
<div class=" col-lg-6 animate__animated wow animate__zoomIn">
<div class="row rounded d-flex justify-content-center align-items-center m-4">
<div class="col-lg-6 col-md-6 branch-img border1 d-flex justify-content-center"><img
class="cover rounded "
src="/img/branch/b-2.jpeg"
alt=""></div>
<div class="col-lg-6 col-md-6 align-items-center">
<div class="branch-contant">
<h2>Power Zone-2</h2>
<h5>Punjab</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa, adipisci.</p>
</div>
</div>
</div>
</div>
<div class=" col-lg-6 animate__animated wow animate__zoomIn">
<div class="row rounded d-flex justify-content-center align-items-center m-4">
<div class="col-lg-6 col-md-6 branch-img border1 d-flex justify-content-center"><img
class="cover rounded "
src="/img/branch/b-3.webp"
alt=""></div>
<div class="col-lg-6 col-md-6 align-items-center">
<div class="branch-contant">
<h2>Power Zone-3</h2>
<h5>Pune</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa, adipisci.</p>
</div>
</div>
</div>
</div>
<div class=" col-lg-6 animate__animated wow animate__zoomIn">
<div class="row rounded d-flex justify-content-center align-items-center m-4">
<div class="col-lg-6 col-md-6 branch-img border1 d-flex justify-content-center"><img
class="cover rounded "
src="/img/branch/b-4.webp"
alt=""></div>
<div class="col-lg-6 col-md-6 align-items-center">
<div class="branch-contant">
<h2>Power Zone-4</h2>
<h5>Bangalore </h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Culpa, adipisci.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============================================================================================================================
footer
============================================================================================================================== -->
<section id="footer">
<div class="container">
<footer class="py-5">
<hr>
<p class="text-center ">© 2022 Power Zone</p>
</footer>
</div>
</section>
<!-- Optional JavaScript; choose one of the two! -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="/wow.min.js"></script>
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script src="/script.js"></script>
</body>
</html>