-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
68 lines (64 loc) · 3.43 KB
/
aboutus.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
<!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">
<title>About Us</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<!-- Logo box -->
<div class="left">
<img src="logo.jpg" alt="LOGO">
<div>Get Fit Gym</div>
</div>
<!-- Nav bar -->
<div class="mid">
<ul class="navbar">
<li><a href="index.html">Home</a> </li>
<li><a href="#" class="active">About Us </a> </li>
<li><a href="fitnesscal.html">Fitness Calculator</a> </li>
<li><a href="contact.html">Contact Us</a> </li>
</ul>
</div>
<!-- Buttons -->
<div class="right">
<button class="btn">Instagram</button>
</div>
</header>
<div class="container2">
<div class="card1">
<h2>About Us</h2>
<p> Get Fit Gym was founded in 2010,its 12 years since that day and we are still providing the best fitness around the tricity. <br> Our founder Mr. Vivek Joshi, is a guy with vision, belives that in order to be fit one must do hard work and founded
this gym to help others to do the same. We are located in the famous 17 sector of Chandigarh <br>
</p>
</div>
<div class="card1">
<h2>Staff</h2>
<p>Currently, we are working with 30+ trainers,each one of them has mastered a domain and we owe them our success, they are the ones who are running the show,they are the real superstars of Get Fit Gym. <br> Apart from the trainers we have 15+
managing staff to look after the equipments of the gym,they'll make sure that you use the equipments are always perfect and ready to use. <br> We also have staff for reception,they are the most mannered and well behaved persons you'll
ever deal with. </p>
</div>
<div class="card1">
<h2>Suppliments</h2>
<p>Suppliments and diet are key feature to get fit, here at Get Fit Gym we provide our clients not only with the diet plans but also the suppliments required by the client(sold seperately, if the client wants). <br> Our suppliments are geneuine
and will help you develop those muscles fast and in a healthy manner.we also made sure to give the suppliments at a resonabaly low price than the market so that our clients have some benefit choosing us. </p>
</div>
<div class="card2">
<h2>Fee Structure</h2>
<p>For now we only have 3 fee plans <br>
<ol>
<li>Monthly plan</li>
<li>Half Yearly plan</li>
<li>Yearly plan</li>
</ol> <br> In Monthly plan the client have to pay ₹ 1000 for the services he receives from the gym. <br> In Half Yearly plan the client will have to pay ₹ 5000 for the services. <br> The most benificial plan for our clients is Yearly
plan which costs only ₹ 8500 </p>
</div>
</div>
</body>
</html>