-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
312 lines (272 loc) · 10.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
<!DOCTYPE html>
<html>
<head>
<title>1-1 Personal Training Website Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" >
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
.wow:first-child {
visibility: hidden;
}
</style>
</head>
<body>
<!-- Start Header -->
<header>
<div class="container">
<div class="logo">
<a href="">Fitness <span>Training</span></a>
</div>
<a href="javascript:void(0)" class="ham-burger">
<span></span>
<span></span>
</a>
<div class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#service">Services</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#price">Price</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</header>
<!-- End Header -->
<!-- Start Home -->
<section class="home wow flash" id="home">
<div class="container">
<h1 class="wow slideInLeft" data-wow-delay="1s">It's <span>gym</span> time. Let's go</h1>
<h1 class="wow slideInRight" data-wow-delay="1s">We are ready to <span>fit you</span></h1>
</div>
</section>
<!-- End Home -->
<!-- Start Service -->
<section class="service" id="service">
<div class="container">
<div class="content">
<div class="text box wow slideInLeft">
<h2>Personel Training Services</h2>
<p>A personal trainer is an individual certified to have a varying degree of knowledge of general fitness involved in exercise prescription and instruction. They motivate clients by setting goals and providing feedback and accountability to clients.</p>
<a href="" class="btn">Start Now</a>
</div>
<div class="accordian box wow slideInRight">
<div class="accordian-container active">
<div class="head">
<h4>Cardiovascular Equipment</h4>
<span class="fa fa-angle-down"></span>
</div>
<div class="body">
<p>Cardiovascular exercise is exercise that gets your heart rate up. Though some people use it solely for weight loss, cardio has other benefits as well. Read on to learn more about what this type of exercise is, the benefits it offers, and how to create a safe and effective cardiovascular routine.</p>
</div>
</div>
<div class="accordian-container">
<div class="head">
<h4>Strength Training Equipment</h4>
<span class="fa fa-angle-up"></span>
</div>
<div class="body">
<p>Strength building exercises are a set of physical workouts followed by many sports as a part of their training regimen. They are done to improve both endurance and strength. It is mainly done with the help of weights by incorporating various training techniques like isometrics, plyometrics, and calisthenics.</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Service -->
<!-- Start Schedule -->
<section class="schedule" id="schedule">
<div class="container">
<div class="content">
<div class="box text wow slideInLeft">
<h2>Classes Schedule</h2>
<img src="images/schedule1.png" alt="schedule" />
</div>
<div class="box timing wow slideInRight">
<table class="table">
<tbody>
<tr>
<td class="day">Monday</td>
<td><strong>9:00 AM</strong></td>
<td>Body Building <br/> 9:00 to 10:00 AM</td>
<td>Room No:210</td>
</tr>
<tr>
<td class="day">Tuesday</td>
<td><strong>9:00 AM</strong></td>
<td>Body Building <br/> 9:00 to 10:00 AM</td>
<td>Room No:210</td>
</tr>
<tr>
<td class="day">Wednesday</td>
<td><strong>9:00 AM</strong></td>
<td>Body Building <br/> 9:00 to 10:00 AM</td>
<td>Room No:210</td>
</tr>
<tr>
<td class="day">Thursday</td>
<td><strong>9:00 AM</strong></td>
<td>Body Building <br/> 9:00 to 10:00 AM</td>
<td>Room No:210</td>
</tr>
<tr>
<td class="day">Friday</td>
<td><strong>9:00 AM</strong></td>
<td>Body Building <br/> 9:00 to 10:00 AM</td>
<td>Room No:210</td>
</tr>
<tr>
<td class="day">Saturday</td>
<td><strong>9:00 AM</strong></td>
<td>Body Building <br/> 9:00 to 10:00 AM</td>
<td>Room No:210</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- End Schedule -->
<!-- Start Gallery -->
<section class="gallery" id="gallery">
<h2>Workout Gallery</h2>
<div class="content">
<div class="box wow slideInLeft">
<img src="images/gallery1.jpg" alt="gallery" />
</div>
<div class="box wow slideInRight">
<img src="images/gallery2.jpg" alt="gallery" />
</div>
<div class="box wow slideInRight">
<img src="images/gallery4.jpg" alt="gallery" />
</div>
</div>
</section>
<!-- End Gallery -->
<!-- Start Price -->
<section class="price-package" id="price">
<div class="container">
<h2>Choose Your Package</h2>
<div class="content">
<div class="box wow bounceInUp">
<div class="inner">
<div class="price-tag">
₹5900/Month
</div>
<div class="img">
<img src="images/price1.jpg" alt="price" />
</div>
<div class="text">
<h3>Body Building Training</h3>
<p>Personal Trainer Male</p>
<p>Yearly Payment Option Available With Discount</p>
<p>Gym and Cardio</p>
<p>Service Locker Rooms</p>
<a href="" class="btn">Join Now</a>
</div>
</div>
</div>
<div class="box wow bounceInUp" data-wow-delay="0.2s">
<div class="inner">
<div class="price-tag">
₹5900/Month
</div>
<div class="img">
<img src="images/price2.jpg" alt="price" />
</div>
<div class="text">
<h3>Body Building Training</h3>
<p>Personal Trainer Female</p>
<p>Yearly Payment Option Available With Discount</p>
<p>Gym and Cardio</p>
<p>Service Locker Rooms</p>
<a href="" class="btn">Join Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Price -->
<!-- Start Contact -->
<section class="contact" id="contact">
<div class="container">
<div class="content">
<div class="box form wow slideInLeft">
<div class="box text wow slideInRight">
<h2>Subscribe For Email Updates</h2></div>
<form>
<input type="text" placeholder="Enter Name">
<input type="text" placeholder="Enter Email">
<input type="text" placeholder="Enter Mobile">
<textarea placeholder="Enter Message"></textarea>
<button type="submit">Send Message</button>
</form>
</div>
<div class="box text wow slideInRight">
<h2>Get Connected with Gym</h2>
<p class="title-p">To make sure you’re getting connected with us, please refer to the contacts below.</p>
<div class="info">
<ul>
<li><span class="fa fa-map-marker"></span> Bannerghatta Road, Bangalore</li>
<li><span class="fa fa-phone"></span> +91 9912173314</li>
<li><span class="fa fa-envelope"></span> [email protected]</li>
</ul>
</div>
<div class="social">
<a href="https://www.facebook.com/"><span class="fa fa-facebook"></span></a>
<a href=""><span class="fa fa-linkedin"></span></a>
<a href=""><span class="fa fa-skype"></span></a>
<a href="https://www.youtube.com/"><span class="fa fa-youtube-play"></span></a>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact -->
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".ham-burger, .nav ul li a").click(function(){
$(".nav").toggleClass("open")
$(".ham-burger").toggleClass("active");
})
$(".accordian-container").click(function(){
$(".accordian-container").children(".body").slideUp();
$(".accordian-container").removeClass("active")
$(".accordian-container").children(".head").children("span").removeClass("fa-angle-down").addClass("fa-angle-up")
$(this).children(".body").slideDown();
$(this).addClass("active")
$(this).children(".head").children("span").removeClass("fa-angle-up").addClass("fa-angle-down")
})
$(".nav ul li a, .go-down").click(function(event){
if(this.hash !== ""){
event.preventDefault();
var hash=this.hash;
$('html,body').animate({
scrollTop:$(hash).offset().top
},800 , function(){
window.location.hash=hash;
});
// add active class in navigation
$(".nav ul li a").removeClass("active")
$(this).addClass("active")
}
})
})
</script>
<script src="js/wow.min.js"></script>
<script>
wow = new WOW(
{
animateClass: 'animated',
offset: 0,
}
);
wow.init();
</script>
</body>
</html>