-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
498 lines (477 loc) · 18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>www.Training_studio.com</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<link rel="stylesheet" href="Training_studio.css" />
</head>
<body>
<header >
<!-- humburger -->
<div class="hamburger">
<i class="fa-solid fa-bars" data-visible="true"></i>
<i class="fa-solid fa-close" data-visible="false"></i>
</div>
<!-- desktop menu -->
<nav class="desktop-menu menus">
<!-- LOGO -->
<div class="logo">
<h1>TRAINING <span>STUDIO</span></h1>
</div>
<!-- menus -->
<ul class="menus-link">
<li>
<a
href="#home"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>HOME</a
>
</li>
<li>
<a
href="#about"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>ABOUT</a
>
</li>
<li>
<a
href="#classes"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>CLASSES</a
>
</li>
<li>
<a
href="#schedule"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>SCHEDULES</a
>
</li>
<li>
<a
href="#contact"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>CONTACT</a
>
</li>
</ul>
<!-- sign up button -->
<div class="btn sing-up-btn"><button>SIGN UP</button></div>
</nav>
<!-- mobile menu -->
<header class="mobile-header" data-visible="false">
<div class="logo logo-mobile-menu">
<h1>TRAINING <span>STUDIO</span></h1>
</div>
</header>
<nav class="mobile-menu menus" data-visible="false">
<!-- LOGO -->
<!-- menus -->
<ul class="menus-link">
<li>
<a
href="#home"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>HOME</a
>
</li>
<li>
<a
href="#about"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>ABOUT</a
>
</li>
<li>
<a
href="#classes"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>CLASSES</a
>
</li>
<li>
<a
href="#schedule"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>SCHEDULES</a
>
</li>
<li>
<a
href="#contact"
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"
>CONTACT</a
>
</li>
</ul>
<!-- sign up button -->
<div class="btn sing-up-btn"><button>SIGN UP</button></div>
</nav>
</header>
<!-- hero section -->
<section id="home" class="hero-container">
<div>
<video muted loop autoplay class="back-video" src="gym.mp4"></video>
</div>
<div class="video-overlay header-text">
<div class="hero-content">
<h6>work harder, get stronger</h6>
<h2>easy with our <em>gym</em></h2>
<button class="hero-btn">BECOME A MEMBER</button>
</div>
</div>
</section>
<!-- section two -->
<section id="about" class="features container">
<div class="section-heading about-heading">
<h2>Choose <em>Program</em></h2>
<img src="line-dec.png" alt="waves" />
<p>
Training Studio is free CSS template for gyms and fitness centers. You
are <br />allowed to use this layout for your business website.
</p>
</div>
<div class="all-boxes-container">
<div class="boxes-grid">
<div class="box1">
<div class="icons">
<img src="features-first-icon.png" alt="icon" />
</div>
<div class="box1-content">
<h4>Basic Fitness</h4>
<p>
Please do not re-distribute this template ZIP file on any
template collection website. This is not allowed.
</p>
<a href="#" style="color: #ee664e;">DISCOVER MORE</a>
</div>
</div>
<div class="box2">
<div class="icons">
<img src="features-first-icon.png" alt="icon" />
</div>
<div class="box2-content">
<h4>Advanced Muscle Course</h4>
<p>
<p><p>You may want to browse through <a rel="nofollow" href="https://templatemo.com/tag/digital-marketing" target="_parent">
Digital Marketing</a> or <a href="https://templatemo.com/tag/corporate">
Corporate</a> HTML CSS templates on our website.</p></p>
</p>
<a href="#" style="color: #ee664e;">DISCOVER MORE</a>
</div>
</div>
<div class="box3">
<div class="icons">
<img src="features-first-icon.png" alt="icon" />
</div>
<div class="box3-content">
<h4>New Gym Training</h4>
<p>
If you wish to support TemplateMo website via PayPal, please feel free to contact us. We appreciate it a lot.
</p>
<a href="#" style="color: #ee664e;">DISCOVER MORE</a>
</div>
</div>
<div class="box4">
<div class="icons">
<img src="features-first-icon.png" alt="icon" />
</div>
<div class="box4-content">
<h4>Yoga Training</h4>
<p>
This template is built on Bootstrap v4.3.1 framework. It is easy to adapt the columns and sections.
</p>
<a href="#" style="color: #ee664e;">DISCOVER MORE</a>
</div>
</div>
<div class="box5">
<div class="icons">
<img src="features-first-icon.png" alt="icon" />
</div>
<div class="box5-content">
<h4>Basic Muscle Courses</h4>
<p>
Credit goes to <a rel="nofollow" href="https://www.pexels.com" target="_blank">Pexels website</a>
for images and video background used in this HTML template.
</p>
<a href="#" style="color: #ee664e;">DISCOVER MORE</a>
</div>
</div>
<div class="box6">
<div class="icons">
<img src="features-first-icon.png" alt="icon" />
</div>
<div class="box6-content">
<h4>Body Building Course</h4>
<p>
Suspendisse fringilla et nisi et mattis. Curabitur sed finibus nisi. Integer nibh sapien, vehicula et auctor.
</p>
<a href="#" style="color: #ee664e;">DISCOVER MORE</a>
</div>
</div>
</div>
</div>
</section>
<!-- section three -->
<section class="last-section-about">
<div class="last-section-about-content container">
<h2>DON’T <em>THINK,</em> BEGIN <em>TODAY!</em></h2>
<p>
Ut consectetur, metus sit amet aliquet placerat, enim est ultricies
ligula, sit amet dapibus odio augue eget libero. <br />
Morbi tempus mauris a nisi luctus imperdiet.
</p>
<button class="btn-about">BECOME A MEMBER</button>
</div>
</section>
<section id="classes" class="classes container">
<div class="classes-heading section-heading">
<h2>our <em>classes</em></h2>
<img src="line-dec.png" alt="waves" />
<p>
unc urna sem, laoreet ut metus id, aliquet consequat magna. Sed
viverra <br />
ipsum dolor, ultricies fermentum massa consequat eu.
</p>
</div>
<div class="classes-container">
<div class="classes-grid">
<div class="left-info">
<ul>
<li>
<img src="tabs-first-icon.png" alt="icon" style="width: 45px" />
<a href="#">first training class</a>
</li>
<li>
<img src="tabs-first-icon.png" alt="icon" style="width: 45px" />
<a href="#">second training class</a>
</li>
<li>
<img src="tabs-first-icon.png" alt="icon" style="width: 45px" />
<a href="#">third training class</a>
</li>
<li>
<img src="tabs-first-icon.png" alt="icon" style="width: 45px" />
<a href="#">fourth training class</a>
</li>
</ul>
<button>view all schedules</button>
</div>
<div class="right-info">
<img src="training-image-01.jpg" alt="training" />
<h4>First Training Class</h4>
<p>
Phasellus convallis mauris sed elementum vulputate. Donec posuere
leo sed dui eleifend hendrerit. Sed suscipit suscipit erat, sed
vehicula ligula. Aliquam ut sem fermentum sem tincidunt lacinia
gravida aliquam nunc. Morbi quis erat imperdiet, molestie nunc ut,
accumsan diam.
</p>
<button class="veiw-schedule-btn">view schedule</button>
</div>
</div>
</div>
</section>
<section>
<div id="schedule" class="bg-schedule">
<div class="section-heading schedule-heading">
<h2>our <em>SCHEDULE</em></h2>
<img src="line-dec.png" alt="waves" />
<p>
unc urna sem, laoreet ut metus id, aliquet consequat magna. Sed
viverra <br />
ipsum dolor, ultricies fermentum massa consequat eu.
</p>
</div>
<div class="table-schedule">
<div class="table-title container">
<p style="color: #ee664e">monday</p>
/
<p
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='white'"
>
Tuesday
</p>
/
<p
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='white'"
>
wednesday
</p>
/
<p
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='white'"
>
thursday
</p>
/
<p
onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='white'"
>
friday
</p>
</div>
<table>
<tr>
<td>fitness class</td>
<td>10:00 - 11:00</td>
<td></td>
<td>William G. stewart</td>
</tr>
<tr>
<td>Muscle Traning</td>
<td></td>
<td></td>
<td>poul d. newman</td>
</tr>
<tr>
<td>Body Building</td>
<td></td>
<td>2:00PM - 3:30PM</td>
<td>Boyd C. Harris</td>
</tr>
<tr>
<td>Yoga Training Class</td>
<td></td>
<td></td>
<td>Hector T. Daigle</td>
</tr>
<tr>
<td>YAdvanced Training</td>
<td></td>
<td></td>
<td>Bret D. Bowers</td>
</tr>
</table>
</div>
</div>
</section>
<section>
<div class="section-heading expert-heading">
<h2>EXPERT <em>TRAINERS</em></h2>
<img src="line-dec.png" alt="waves" />
<p>
unc urna sem, laoreet ut metus id, aliquet consequat magna. Sed
viverra <br />
ipsum dolor, ultricies fermentum massa consequat eu.
</p>
</div>
<div class="last-boxes-of-schedule">
<div class="box-grid container">
<div class="boxes box1">
<div class="img-box"><img src="first-trainer.jpg" alt="first-trainer" ></div>
<div class="content-box"><span style="color: #ed563b;">Strength Trainer</span>
<h4>Bret D. Bowers</h4>
<p>Bitters cliche tattooed 8-bit distillery <br> mustache. Keytar succulents gluten- <br>free vegan church-key pour-over seitan flannel.</p></div>
<div class="icons">
<i class="fa-brands fa-facebook-f" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-twitter" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-behance" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-linkedin-in" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
</div>
</div>
<div class="boxes box2">
<div class="img-box"><img src="second-trainer.jpg" alt="first-trainer"></div>
<div class="content-box"><span style="color: #ed563b;">Strength Trainer</span>
<h4>Bret D. Bowers</h4>
<p>Bitters cliche tattooed 8-bit distillery <br> mustache. Keytar succulents gluten- <br>free vegan church-key pour-over seitan flannel.</p></div>
<div class="icons">
<i class="fa-brands fa-facebook-f" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-twitter" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-behance" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-linkedin-in" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
</div>
</div>
<div class="boxes box2">
<div class="img-box"><img src="third-trainer.jpg" alt="first-trainer"></div>
<div class="content-box"><span style="color: #ed563b;">Strength Trainer</span>
<h4>Bret D. Bowers</h4>
<p>Bitters cliche tattooed 8-bit distillery <br> mustache. Keytar succulents gluten- <br>free vegan church-key pour-over seitan flannel.</p></div>
<div class="icons">
<i class="fa-brands fa-facebook-f" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-twitter" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-behance" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
<i class="fa-brands fa-linkedin-in" onMouseOver="this.style.color=' #ee664e'"
onMouseOut="this.style.color='#212529'"></i>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="contact-section">
<div class="contact-container">
<div class="contact-grid">
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d235106.0682272103!2d-43.321907!3d-22.967445!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9bdb695cd967b7%3A0x171cdd035a6a9d84!2sAv.%20L%C3%BAcio%20Costa%2C%20Rio%20de%20Janeiro%20-%20RJ%2C%20Brazil!5e0!3m2!1sen!2sus!4v1718122093816!5m2!1sen!2sus" width="650" height="600" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="form-bg">
<div class="contact-form">
<form action="POST">
<input type="text" placeholder="Your Name*">
<input type="mail" placeholder="Your Email*" >
<br>
<input name="subject" type="text" id="subject" placeholder="Subject">
<br>
<textarea name="message" id="message" placeholder="Message" required="" ></textarea>
<br>
<button type="submit" id="form-submit" class="main-button">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<footer>copyright © 2024 Training Studio - Designed by <em>Abdalla hiil</em></footer>
<!-- javascript -->
<script>
const hamburger = document.querySelector(".hamburger");
const mobileMenu = document.querySelector(".mobile-menu");
const icons = document.querySelectorAll("i");
hamburger.addEventListener("click", function (event) {
const isVisible = mobileMenu.getAttribute("data-visible");
if (isVisible == "true") {
// qari hiding
mobileMenu.setAttribute("data-visible", "false");
icons[0].setAttribute("data-visible", "true");
icons[1].setAttribute("data-visible", "false");
} else if (isVisible == "false") {
// soo bandhig showing
mobileMenu.setAttribute("data-visible", "true");
icons[0].setAttribute("data-visible", "false");
icons[1].setAttribute("data-visible", "true");
}
});
</script>
</body>
</html>