-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhomepage.html
358 lines (317 loc) · 13.2 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Home
</title>
<link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/common.css">
<style>
body { margin: 0; }
.start {
background-image: url("images/home.gif");
background-color: #cccccc;
height: 500px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.start-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
.column {
height: 300px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
display:inline-block;
padding: 0 8px;
text-align: center;
width:23%;
height:100px;
font-size:small;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin: 8px;
}
.container {padding: 16px;}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
}
.button:hover {background-color: #555;}
.team {
position: relative;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
overflow: hidden;
}
.info {
display: flex;
align-items: center;
flex-direction: column;
padding: 30px;
}
.info .team-area {
display: flex;
width: 50vw;
}
.info .team-area .team-member:hover .video-background {
animation: fadeIn .3s ease-in-out forwards;
}
.info .team-area .team-member:not(:hover) .video-background {
animation: fadeOut .3s ease-in-out forwards;
}
.info .team-area .team-member .video-background {
position: absolute;
top: 0;
left: 0;
z-index: -1;
opacity: 0;
}
.info .team-area .team-member .thumb {
width: 150px;
height: 150px;
}
.info .team-area .team-member .thumb img {
width: 100%;
border-radius: 50%;
}
.info .team-area .team-member .name {
font-size: 20px;
color: #000000;
}
@keyframes fadeIn {
from { opacity: 0 }
to { opacity: 0.8; }
}
@keyframes fadeOut {
from { opacity: 1 }
to { opacity: 0; }
}
/* Our Motto */
.special {
display: flex;
align-items: center;
/* justify-content: center; */
background: #f1f1f1;
overflow: hidden;
margin-top: 5px;
padding-left:20%;
height:350px;
}
.perspective-text {
color: white;
font-family: Arial;
font-size: 58px;
font-weight: 900;
letter-spacing: -2px;
text-transform: uppercase;
}
.perspective-line {
height: 50px;
overflow: hidden;
position: relative;
}
.special p {
margin: 0;
height: 50px;
line-height: 50px;
transition: all 0.5s ease-in-out;
}
.perspective-line:nth-child(odd) {
transform: skew(60deg, -1deg) scaleY(0.667);
}
.perspective-line:nth-child(even) {
transform: skew(0deg, -1deg) scaleY(1.337);
}
.perspective-text:hover p {
transform: translate(0, -50px);
}
.perspective-line:nth-child(1) {
left: 29px;
}
.perspective-line:nth-child(2) {
left: 58px;
background: #fca503;
}
.perspective-line:nth-child(3) {
left: 87px;
background: #34affc;
}
.perspective-line:nth-child(4) {
left: 116px;
background: #97b822;
}
.perspective-line:nth-child(5) {
left: 145px;
}
.active{
background: beige;
}
</style>
</head>
<body>
<header>
<div class="header" style="color:white;">
<a href="homepage.html">
<img src="images/logo.png" width=35px height=30px>
<h1 style="display: inline; ">FITNESS 101</h1>
</a>
<div class="dropdown">
<button class="dropbtn"><img src="images/user.png" width=40px height=40px ></button>
<div class="dropdown-content">
<a href="index.php">Log-In</a>
<a href="register.php">Sign-Up</a>
</div>
</div>
</div>
</header>
<nav>
<div id="navigation">
<a class="active" href="homepage.html">Home</a>
<a href="health.html">Healthy Living</a>
<a href="faq.html">FAQ</a>
<a href="contactus.html">Contact Us</a>
<a href="help.php">Help</a>
<a href="member.php">Member's Area</a>
</div>
</nav>
<div class="start">
<div class="start-text">
<p style="font-size:55px; font-family:Satisfy;"><b>Train Hard. Sweat Hard.</b></p>
<p style="font-size:35px;font-family:Satisfy;">Discover Your Exciting, Electrifying, Engaging And Fun Space</p>
</div>
</div>
<div class="about">
<h1><center>LET US BE YOUR GUIDE </center></h1>
<div class="column">
<div class="card">
<img src="images/h1.jpg" alt="hiit" style="width:100%">
<div class="container">
<h2>Flexibility Training</h2>
<p class="describe">Use one of our trainers as a personal coach as you begin a journey to get faster, stronger, more fitter and healthier.</p>
<p><button class="button" onclick="location.href='register.php';">More Info</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/h2.jpg" alt="stretching" style="width:100%">
<div class="container">
<h2>High Intensity Interval Training</h2>
<p class="describe">Strengthen and tone your body by letting one of our certified pros teach you proper routines.</p>
<p><button class="button" onclick="location.href='register.php';">More Info</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/h3.jpg" alt="pilates" style="width:100%">
<div class="container">
<h2>Endurance Training</h2>
<p class="describe">An excellent training program, taking advantage of the body’s natural movements. Don’t hesitate to start today!</p>
<p><button class="button" onclick="location.href='register.php';">More Info</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/h4.jpg" alt="yoga" style="width:100%">
<div class="container">
<h2>Weight Training</h2>
<p class="describe">Improve endurance, build muscle mass, rev up your metabolism and develop maximum strength. Your beach body will thank you.</p>
<p><button class="button" onclick="location.href='register.php';">More Info</button></p>
</div>
</div>
</div>
</div>
<br><br>
<div class="special">
<div class="perspective-text">
<div class="perspective-line">
<p></p>
<p>OUR motto</p>
</div>
<div class="perspective-line">
<p>OUR motto</p>
<p>everytime you feel</p>
</div>
<div class="perspective-line">
<p>everytime you feel </p>
<p> like giving up</p>
</div>
<div class="perspective-line">
<p>like giving up</p>
<p>don't.</p>
</div>
<div class="perspective-line">
<p>don't.</p>
<p></p>
</div>
</div>
</div>
<div class="team">
<h1><center>MEET THE TEAM </center></h1>
<div class="info">
<div class="team-area">
<div class="team-member" style="margin-right:50px;">
<div class="thumb">
<img src="images/rajshree.jpg" alt="rv" >
</div>
<video class="video-background" src="images/girl.mp4" autoplay loop muted></video>
<b><span class="name">Rajshree Varma</span></b>
<p class="describe" style="color:#34affc">Co-Founder</p>
<p class="describe" style="color:orange">"You have to think about it before you can do it. The mind is what makes it all possible."</p>
</div>
<div class="team-member" style="margin-left:10px;">
<div class="thumb">
<img src="images/priya.jpg" alt="pv" >
</div>
<video class="video-background" src="images/girl1.mp4" autoplay loop muted></video>
<b><span class="name">Priya Vijayvargiya</span></b>
<p class="describe" style="color:#34affc">Co-Founder</p>
<p class="describe" style="color:orange">"Each new day is a new opportunity to improve yourself. Make the most of it."</p>
</div>
</div>
</div>
</div>
<footer >
<div class="footer">
FOLLOW US
<div id="social-media">
<a href="https://www.instagram.com/rajshree.varma/saved/?hl=en"><img src="https://www.iconfinder.com/data/icons/2018-social-media-black-and-white-logos/1000/2018_social_media_popular_app_logo_facebook-256.png" alt="visit our facebook" class="social"></a>
<a href="https://www.instagram.com/rajshree.varma/saved/?hl=en"><img src="https://www.iconfinder.com/data/icons/2018-social-media-black-and-white-logos/1000/2018_social_media_popular_app_logo_instagram-256.png" alt="visit our instagram " class="social"></a>
<a href="https://www.instagram.com/rajshree.varma/saved/?hl=en"><img src="https://www.iconfinder.com/data/icons/2018-social-media-black-and-white-logos/1000/2018_social_media_popular_app_logo_twitter-256.png" alt="visit our twitter " class="social"></a>
</div>
<!-- Copyright -->
<div class="footer-copyright" style=" background-color:rgba(255, 255, 255, 0.13);">
© 2020 Copyright:
<a href="#homepage" style="text-decoration:none; color:rgba(255, 255, 255, 0.281);"> Fitness101.com</a>
All rights reserved.<br>
</div>
<!-- Copyright -->
</div>
</footer>
</body>
</html>