-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (145 loc) · 7.63 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
<!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="Kunal Fitness Studio offers state-of-the-art equipment, diverse classes, and expert trainers to help you achieve your fitness goals.">
<title>Kunal Fitness Studio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utils.css">
<script src="timer.js"></script>
</head>
<body class="overflow-x-hidden">
<div class="container mx-auto">
<header>
<nav class="flex justify-between">
<div class="logo font-family:'ubuntu' flex items-center text-blue">KunalFitness</div>
<ul class="navbar flex items-center">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact Us</a></li>
<li><button type="button" class="btn">Join Now</button></li>
</ul>
</nav>
<hr>
</header>
<main class="min-h-screen">
<section class="section1">
<div class="flex">
<div class="topleft flex flex-col justify-center px-2">
<div class="text-center">
<img class="dumbellimg" src="dumbells.png" alt="Dumbbells for workout">
</div>
<h1 class="my-1 text-center">The best fitness gym in town is here</h1>
<p class="text-center">Looking for the best fitness gym in town? Look no further than Kunal Fitness Studio! With state-of-the-art equipment, a diverse range of classes, and expert trainers dedicated to helping you achieve your goals, we create an inspiring environment for all fitness levels. Whether you’re into high-intensity workouts, yoga, or strength training, our community is supportive and welcoming. Plus, our flexible hours and convenient location make it easy to fit fitness into your busy schedule. Join us at Kunal Fitness Studio and discover a place where you can truly thrive on your fitness journey!</p>
<div class="buttons">
<button type="button" class="btn">Join Now</button>
<button type="button" class="btn">Contact Us</button>
</div>
</div>
<div class="topright flex justify-center">
<img class="gymimg" src="gymming.png" alt="Gym environment">
</div>
</div>
</section>
<hr>
<section class="section2">
<h1 class="text-center my-2">Pricing</h1>
<p class="my-2">At Kunal Fitness Studio, we believe that investing in your health should be accessible to everyone. Our pricing structure is designed to offer flexibility and value, with a variety of membership options to suit your needs. Choose from monthly plans, annual memberships, or even pay-per-class options, all without hidden fees. Plus, we frequently offer promotions and discounts for students, families, and referrals, ensuring you get the most bang for your buck. With our competitive rates, you can focus on your fitness goals without breaking the bank!</p>
<div class="boxes flex justify-center">
<div class="box">
<h2>Basic</h2>
<ul>
<li class="highlighted">₹500/month</li>
<li>No trainer</li>
<li>No diet plan</li>
<li>No parking</li>
<li><button type="button" class="btn">Join Now</button></li>
</ul>
</div>
<div class="box">
<h2>Pro</h2>
<ul>
<li class="highlighted">₹1000/month</li>
<li>Reserved parking</li>
<li>Diet plan by expert</li>
<li><button type="button" class="btn">Join Now</button></li>
</ul>
</div>
<div class="box">
<h2>Best</h2>
<ul>
<li class="highlighted">₹2000/month</li>
<li>Personal trainer</li>
<li>Reserved parking</li>
<li>Diet plan by expert</li>
<li>Steam bath access</li>
<li><button type="button" class="btn">Join Now</button></li>
</ul>
</div>
</div>
</section>
<hr>
<section class="section3">
<h1 class="text-center my-2">Compare Plans</h1>
<div class="container plantable">
<table class="table text-center">
<thead>
<tr>
<th></th>
<th>Basic</th>
<th>Pro</th>
<th>Best</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" class="text-start">Public Trainer</th>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row" class="text-start">Personal Trainer</th>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row" class="text-start">Parking</th>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row" class="text-start">Wi-Fi Access</th>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row" class="text-start">Steam Bath Access</th>
<td>No</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row" class="text-start">Diet Plan</th>
<td>No</td>
<td>Yes</td>
<td>Yes</td>
</tr>
</tbody>
</table>
</div>
</section>
<hr>
</main>
<footer>
<p>Copyright © KunalFitness.com | All rights reserved</p>
</footer>
</div>
</body>
</html>