-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
107 lines (97 loc) · 3.86 KB
/
aboutus.html
File metadata and controls
107 lines (97 loc) · 3.86 KB
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
<!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>Gym Club</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utils.css">
</head>
<body>
<div class="container mx-auto">
<header>
<nav class="flex justify-between">
<div class="flex items-center font-bold">Gym Club</div>
<ul class="navbar flex items-center">
<li>
<a href="index.html">
<span>Home</span>
</a>
</li>
<li>
<a href="services.html">
<span>Services</span>
</a>
</li>
<li>
<a href="aboutus.html">
<span>About</span>
</a>
</li>
<li>
<a href="contact.html">
<span>Contact Us</span>
</a>
</li>
</ul>
</nav>
</header>
<main>
<section class="about-us">
<h1>About Us</h1>
<p>Welcome to <span>Gym Club</span>, the premier fitness center in the area. We offer a wide range of fitness classes
and equipment to help you reach your fitness goals. Our experienced trainers are here to help you
every step of the way.</p>
</section>
<section class="our-team">
<h2>Our Team</h2>
<div class="trainer">
<img src="images/8.jpg" alt="Trainer 1">
<h3>John Smith</h3>
<p>John is a certified personal trainer with over 10 years of experience in the fitness industry. He
specializes in strength training and weight loss programs.</p>
</div>
<div class="trainer">
<img src="images/7.jpg" alt="Trainer 2">
<h3>Jane Doe</h3>
<p>Jane is a certified yoga instructor with a passion for helping others achieve a balanced mind and
body through yoga and meditation.</p>
</div>
</section>
</main>
<footer>
<div class="container2">
<div class="row">
<div class="col-md-4">
<h4>About Us</h4>
<p>We are a company that specializes in...</p>
</div>
<div class="col-md-4">
<h4>Contact Us</h4>
<p>123 Main Street</p>
<p>Chandigarh, 160012</p>
<p>Phone: (123) 456-7890</p>
<p>Email: info@company.com</p>
</div>
<div class="col-md-4">
<h4>Follow Us</h4>
<ul class="social-icons">
<li>
<a href="#"><img src="images/insta.png" alt="" srcset=""></a>
</li>
<li>
<a href="#"><img src="images/face.png" alt="" srcset=""></a>
</li>
<li>
<a href="#"><img src="images/utube.png" alt="" srcset=""></a>
</li>
</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>