-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
97 lines (97 loc) · 3.67 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<header>
<h1>About Us</h1>
</header>
<div class="container">
<div class="box1">
<h1>Welcome to Gymnast - Where Fitness Meets Finesse!</h1>
<p>
Discover top-notch equipment, personalized training, and invigorating group classes all under one roof. Whether you're a beginner or a seasoned athlete, Gymnast is your path to a healthier lifestyle. Join our community today and start your journey to a better you!
</p>
</div>
<div class="box2">
<h1>Meet Our Expert Trainers</h1>
<div class="trainers">
<div class="trainer1">
<p class="name">John Deo</p>
</div>
<div class="trainer2">
<p class="name">Adam Phillips</p>
</div>
<div class="trainer3">
<p class="name">James Alien</p>
</div>
</div>
</div>
<div class="box3">
<h1>Time Table</h1>
<box class="table">
<table>
<tr>
<th>time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
<tr>
<td>6.00am - 8.00am</td>
<td> <p>Cardio</p> <p>John Deo</p> </td>
<td></td>
<td> <p>Crossfit</p> <p>Adam Phillips</p> </td>
<td></td>
<td> <p>Power Lifting</p> <p>James Alien</p> </td>
<td></td>
<td> <p>Cardio</p> <p>John Deo</p> </td>
</tr>
<tr>
<td>10.00am - 12.00am</td>
<td></td>
<td> <p>Power Lifting</p> <p>James Alien</p> </td>
<td></td>
<td> <p>Cardio</p> <p>John Deo</p> </td>
<td></td>
<td> <p>Crossfit</p> <p>Adam Phillips</p> </td>
<td></td>
</tr>
<tr>
<td>5.00pm - 7.00pm</td>
<td> <p>Crossfit</p> <p>Adam Phillips</p> </td>
<td></td>
<td> <p>Power Lifting</p> <p>James Alien</p> </td>
<td></td>
<td> <p>Cardio</p> <p>John Deo</p> </td>
<td></td>
<td> <p>Crossfit</p> <p>Adam Phillips</p> </td>
</tr>
<tr>
<td>7.00pm - 9.00pm</td>
<td></td>
<td> <p>Cardio</p> <p>John Deo</p> </td>
<td></td>
<td> <p>Crossfit</p> <p>Adam Phillips</p> </td>
<td></td>
<td> <p>Power Lifting</p> <p>James Alien</p> </td>
<td></td>
</tr>
</table>
</box>
</div>
</div>
</div>
<footer>
<a href="index.html">Go back to <b>Home</b></a>
</footer>
</body>
</html>