-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
298 lines (258 loc) · 8.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Owner Details</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
html{
font-size:62.5%;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
background: linear-gradient(135deg, #0C1A3A, #5285E8);
color: #EAEAEA;
overflow-x: hidden;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background: linear-gradient(135deg, #5285e8, #333);
padding: 1rem 3rem;
top: 0;
box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.4);
}
.navbar .logo {
margin-right: 65rem;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-style: italic;
font-size: 2.8rem;
font-weight: bold;
color: #FFD700;
text-transform: uppercase;
letter-spacing: .2rem;
}
.navbar img{
width: 10rem;
height: 10rem;
border-radius: 50%;
}
.navbar ul {
list-style: none;
display: flex;
gap: 2.5rem;
margin: 0;
padding: 0;
}
.navbar ul li {
display: inline;
}
.navbar ul li a {
text-decoration: none;
color: #C0C0C0;
font-size: 1.8rem;
transition: color 0.3s, transform 0.3s;
display: flex;
align-items: center;
gap: .8rem;
}
.navbar ul li a:hover {
color: #FFD700;
transform: scale(1.1);
}
.navbar ul li a i {
font-size: 2rem;
}
.owner-container {
padding: 4rem 2rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
.owner-header {
font-size: 3.6rem;
font-weight: 600;
margin-bottom: 2rem;
animation: fadeInDown 1s ease-in-out;
color: #FFD700;
}
.owner-image {
width: 14rem;
height: 14rem;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 .8rem 2rem rgba(0, 0, 0, 0.4);
}
.owner-details {
font-size: 1.8rem;
color: #F8F9FA;
margin-top: 1.5rem;
max-width: 600px;
}
.owner-details h3 {
font-size: 2.4rem;
color: #FFD700;
}
.key-points {
margin-top: 3rem;
display: flex;
justify-content: center;
gap: 2rem;
animation: fadeInUp 1s ease-in-out;
}
.key-point {
background: #192A4D;
border-radius: 1.2rem;
padding: 1.5rem;
width: 20rem;
text-align: center;
box-shadow: 0 .8rem 2rem rgba(0, 0, 0, 0.4);
transition: transform 0.3s;
}
.key-point:hover {
transform: translateY(-8px);
}
.key-point h3 {
margin-bottom: 1rem;
font-size: 2rem;
color: #FFD700;
}
.key-point p {
font-size: 1.6rem;
color: #C0C0C0;
}
.quotes-section {
margin-top: 3rem;
font-size: 1.8rem;
font-style: italic;
color: #FFD700;
animation: fadeInUp 1s ease-in-out;
text-align: center;
}
.about-container {
padding: 4rem 2rem;
background: #192A4D;
color: #F8F9FA;
text-align: center;
}
.about-content {
font-size: 1.8rem;
line-height: 1.6;
max-width: 80rem;
margin: 0 auto;
}
.footer {
background: #111;
color: #C0C0C0;
text-align: center;
padding: 2rem;
position: relative;
bottom: 0;
width: 100%;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.key-points {
flex-direction: column;
align-items: center;
}
.key-point {
width: 90%;
}
}
</style>
</head>
<body>
<!-- Navbar Section -->
<div class="navbar">
<img src="./logo.png" alt="" srcset="">
<div class="logo">K.M Infotech</div>
<ul>
<li><a href="index.html"><i class="fas fa-home"></i> Home</a></li>
<li><a href="education section/education.html"><i class="fas fa-info-circle"></i>Education</a></li>
<li><a href="service.html"><i class="fas fa-cogs"></i> Services</a></li>
<li><a href="contact.html"><i class="fas fa-envelope"></i> Contact</a></li>
</ul>
</div>
<div class="owner-container">
<img src="WhatsApp Image 2024-12-28 at 22.36.13.jpeg" alt="Owner" class="owner-image">
<div class="owner-details">
<h3>Ajay Kumar</h3>
<p>Founder & CEO (K.M Infotech)</p>
<p>With a vision to deliver top-quality solutions, Ajay Kumar founded this company with a commitment to
innovation, collaboration, and excellence. His dedication to achieving the highest standards is the
foundation of our success.</p>
</div>
</div>
<!-- Key Points Section -->
<div class="key-points">
<div class="key-point">
<h3>Customer Focus</h3>
<p>We put our customers at the center of everything we do, ensuring their satisfaction with every project.
</p>
</div>
<div class="key-point">
<h3>Excellence</h3>
<p>We strive for excellence, delivering only the highest quality products and services to our clients.</p>
</div>
<div class="key-point">
<h3>Innovation</h3>
<p>We embrace new ideas and technologies to create innovative solutions that set us apart in the industry.
</p>
</div>
</div>
<!-- Customer Attracting Quotes Section -->
<div class="quotes-section">
<p>"Your success is our mission. Let's achieve greatness together!"</p>
<p>"Innovation, dedication, and collaboration — the pillars of our journey."</p>
</div>
<!-- About Us Section -->
<div class="about-container">
<h2>About Us</h2>
<div class="about-content">
<p>We are a company driven by a passion for innovation and excellence. Our mission is to provide top-notch
solutions that meet the diverse needs of our clients. With a focus on customer satisfaction, we aim to
build long-lasting relationships and deliver impactful results.</p>
</div>
</div>
<!-- Footer Section -->
<div class="footer">
<p>© 2025 K.M Infotech All Rights Reserved.</p>
<p>Follow us on <a href="#" style="color: #FFD700; text-decoration: none;">Social Media</a></p>
</div>
</body>
</html>