-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
116 lines (101 loc) · 2.97 KB
/
about.html
File metadata and controls
116 lines (101 loc) · 2.97 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
108
109
110
111
112
113
114
115
116
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap">
<title>About Us</title>
<style>
body, html {
height: 100%;
margin: 0;
font-family: 'Inter', sans-serif;
}
/* Blurred background image */
.bg-image {
background-image: url("together.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
filter: blur(5px);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
}
/* Main content container */
.d1 {
position: relative;
z-index: 1;
background-color: rgba(255, 255, 255, 0.45); /* increased opacity for contrast */
color: #1a1a1a; /* dark text */
max-width: 800px;
margin: 50px auto;
padding: 40px 40px;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.d1 h1 {
text-align: center;
font-size: 32px;
font-weight: 800;
color: #111;
margin-bottom: 25px;
}
.d1 p {
line-height: 1.7;
font-size: 17px;
margin-bottom: 22px;
font-weight: 600;
color: #222;
}
.d1 ul {
padding-left: 22px;
margin-bottom: 22px;
font-weight: 600;
color: #222;
}
.d1 li {
margin-bottom: 10px;
}
em {
color: #219653;
font-style: normal;
font-weight: 600;
}
@media screen and (max-width: 600px) {
.d1 {
padding: 25px;
margin: 20px;
}
.d1 h1 {
font-size: 26px;
}
.d1 p,
.d1 ul {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="bg-image"></div>
<div class="d1">
<h1>ABOUT US</h1>
<p>Wellbeing and fitness go hand-in-hand in helping individuals maintain a balanced, energetic lifestyle.
Regular exercise paired with a nutritious diet boosts immunity, increases strength, and supports mental wellness.</p>
<p>Here’s a glimpse of our certified programs:</p>
<ul>
<li>Beginner to Advanced Aerobics</li>
<li>Cardio Workouts</li>
<li>Yoga Sessions</li>
<li>High-Intensity Interval Training (HIIT)</li>
<li>Pilates Classes</li>
<li>Guided Walking Routines</li>
</ul>
<p>New to fitness? We’ve got you covered with beginner-friendly guides and personalized support.
Our professional trainers (each with over 6 years of experience) have helped hundreds achieve real results — especially those dealing with obesity and chronic health conditions.</p>
<p>We’re a dedicated team of 7 certified trainers, currently active in 15 states across India — and always just a call away.</p>
<p>📧 For any inquiries, reach out to us at: <em>thefithubco@gmail.com</em> or 📞 <em>+91 88965 7221</em></p>
</div>
</body>
</html>