-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
558 lines (492 loc) · 19.2 KB
/
education.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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn Excel, Tally, BCA, MS Office, and More</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
body {
font-family: 'Roboto', Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #1e90ff, #ff69b4);
color: #f4f4f4;
}
header {
background: rgba(0, 0, 0, 0.8);
color: white;
text-align: center;
padding: 20px 0;
}
nav {
text-align: center;
background: rgba(0, 0, 0, 0.9);
padding: 15px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
color: white;
margin: 0 20px;
text-decoration: none;
font-weight: bold;
}
nav i {
margin-right: 8px;
color: white;
}
.enroll-btn {
background-color: #28a745;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
.enroll-btn:hover {
background-color: #1fdc48;
}
.container1 {
background-color: #f4f4f4;
padding: 40px;
box-sizing: border-box;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
max-width: 1200px;
margin: 0 auto;
}
.container1 .left-section {
flex: 1;
min-width: 300px;
margin: 5px;
padding: 5px;
}
.container1 .right-section {
flex: 1;
min-width: 300px;
margin: 5px;
padding: 5px;
}
.container1 li i {
font-size: 24px;
margin-right: 10px;
color: orangered;
line-height: 1.8;
}
.container1 h2 {
font-size: 28px;
margin-bottom: 10px;
color: #333;
}
.container1 p {
font-size: 18px;
color: #777;
line-height: 1.5;
}
section {
padding: 20px;
margin: 20px;
color: #222;
}
.course-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 20px;
margin: 20px;
}
.course {
background-color: #fff;
padding: 20px;
text-align: center;
border-radius: 5px;
transition: transform 0.3s ease, border 1s, box-shadow 1s;
/* Smooth transition for border and shadow */
position: relative;
border: 3.5px solid transparent;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Hover effect remains the same */
.course:hover {
animation: hoverEffect 1s infinite alternate;
}
@keyframes hoverEffect {
0% {
border-color: transparent;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
25% {
border-color: #ff5733;
/* Red */
box-shadow: 0 0 15px rgba(255, 87, 51, 0.5);
}
50% {
border-color: #33ff57;
/* Green */
box-shadow: 0 0 20px rgba(51, 255, 87, 0.5);
}
75% {
border-color: #3357ff;
/* Blue */
box-shadow: 0 0 25px rgba(51, 87, 255, 0.5);
}
100% {
border-color: #ff33ff;
/* Pink */
box-shadow: 0 0 30px rgba(255, 51, 255, 0.5);
}
}
/* Apply animation on hover */
.course:hover {
animation: hoverEffect 1s infinite alternate;
}
.course {
background-color: #fff;
padding: 20px;
margin: 10px;
width: 220px;
text-align: center;
border-radius: 5px;
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 190px;
/* Set a fixed height to keep boxes the same size */
}
.course h3 {
margin: 0;
font-size: 18px;
color: #333;
}
.course p {
font-size: 14px;
color: #777;
margin-bottom: auto;
/* Push the button down */
}
.cta-button {
display: inline-block;
margin-top: auto;
/* This ensures that the button stays at the bottom */
padding: 8px 16px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
text-align: center;
}
.cta-button:hover {
background-color: #0056b3;
}
.testimonial-section {
background: rgba(255, 255, 255, 0.9);
padding: 30px;
border-radius: 10px;
width: 93%;
margin: 20px auto;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
text-align: center;
}
.testimonial-section h3 {
font-size: 28px;
margin-bottom: 20px;
color: #333;
}
.testimonial-section p {
font-size: 18px;
color: #777;
line-height: 1.6;
}
.testimonial-section .quotes {
display: flex;
justify-content: space-around;
gap: 20px;
flex-wrap: wrap;
margin-top: 30px;
}
.testimonial {
background-color: #f7f7f7;
padding: 20px;
border-radius: 10px;
width: 250px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.testimonial p {
font-style: italic;
font-size: 16px;
color: #555;
text-align: center;
}
.testimonial span {
display: block;
margin-top: 10px;
font-weight: bold;
text-align: right;
color: #333;
}
.education-system-section {
background-color: rgba(255, 255, 255, 0.9);
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}
.education-system-section li i {
font-size: 24px;
margin-right: 10px;
color: blueviolet;
line-height: 1.5;
}
.education-system-section h3 {
font-size: 30px;
margin-bottom: 20px;
color: #333;
}
.education-system-section p {
font-size: 20px;
color: #777;
line-height: 1.6;
}
.education-system-section ul {
list-style-type: none;
padding: 0;
font-size: 16px;
margin-top: 20px;
}
.education-system-section li {
margin-bottom: 15px;
}
footer {
background: rgba(0, 0, 0, 0.9);
color: white;
padding: 10px 0;
text-align: center;
}
footer .container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
max-width: 1200px;
margin: 0 auto;
}
footer .footer-section {
flex: 1;
min-width: 150px;
margin: 5px;
padding: 5px;
}
footer h3 {
font-size: 20px;
margin-bottom: 5px;
}
footer a {
color: white;
text-decoration: none;
display: block;
margin: 3px 0;
}
footer a:hover {
text-decoration: underline;
}
footer .social-icons {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 5px;
}
footer .social-icons a {
font-size: 22px;
color: white;
}
footer .social-icons a:hover {
color: blueviolet;
}
footer p {
margin-top: 5px;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to K.M Computers Education</h1>
<p>Empowering your future with the best in IT education</p>
</header>
<nav>
<a href="../index.html"><i class="fas fa-home"></i> Home</a>
<a class="enroll-btn" href="https://emaxindia.in/exampanel/online_admission.php?cid=R0OPiQ==">Enroll Now</a>
</nav>
<section>
<div class="container1">
<h2>Welcome to K.M Computers</h2>
<p>At K.M Computers, we provide top-tier IT education with a focus on practical learning and
industry-relevant skills. Our diverse range of courses is designed to help individuals at every stage of
their career—from beginners to professionals seeking advanced certifications.</p>
<p>What sets us apart is our commitment to personalized education. We take the time to understand your
learning style and career goals, helping you navigate through your educational journey with confidence.
</p>
<h3>Why Choose K.M Computers?</h3>
<ul>
<li><i class="fas fa-book-open"></i><strong>Comprehensive Learning:</strong> Courses tailored to meet
industry standards, covering everything from basic computer skills to specialized IT certifications.
</li>
<li><i class="fas fa-chalkboard-teacher"></i><strong>Expert Instructors:</strong> Learn from experienced
professionals with real-world expertise and a passion for teaching.</li>
<li><i class="fas fa-laptop-code"></i><strong>Hands-On Approach:</strong> Practical sessions, real-world
projects, and interactive workshops designed to ensure you gain the skills needed for today’s job
market.</li>
<li><i class="fas fa-clock"></i><strong>Flexible Learning Options:</strong> Learn at your own pace
through both online and classroom-based learning, allowing you to fit education into your schedule.
</li>
<li><i class="fas fa-briefcase"></i><strong>Career-Focused Education:</strong> From job placement
assistance to resume building, we help you launch and advance your career.</li>
<li><i class="fas fa-globe"></i><strong>Global Reach:</strong> Whether you're in India or abroad, K.M
Computers provides a flexible learning platform that lets you study from anywhere in the world.</li>
</ul>
</div>
</section>
<section>
<div class="container">
<h2>Our Courses</h2>
<div class="course-list">
<div class="course">
<h3>Excel & MS Office</h3>
<p>Master Excel and other Microsoft Office tools to increase productivity and streamline your tasks.
</p>
<a href="exel.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>Tally ERP 9</h3>
<p>Learn how to manage accounting, inventory, and taxation using Tally, one of the most widely used
accounting software.</p>
<a href="tally.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>BCA (Bachelor of Computer Applications)</h3>
<p>Our BCA program equips you with all the necessary skills to start a successful career in the IT
industry.</p>
<a href="bca.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>HTML & CSS</h3>
<p>Get the skills to create stunning websites with HTML and CSS, the building blocks of web design.
</p>
<a href="webdev.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>CCC</h3>
<p>Learn the fundamentals of CCC to add interactivity to your websites and become a
full-stack developer.</p>
<a href="ccc.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>MsOffice World</h3>
<p>Master design software like Photoshop and Illustrator to create beautiful graphics for web and
print media.</p>
<a href="msoffice.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>Networking & CCNA</h3>
<p>Gain practical knowledge of networking concepts and prepare for the CCNA certification to become
a network specialist.</p>
<a href="networking-ccna-course.html" class="cta-button">Learn More</a>
</div>
<div class="course">
<h3>Digital Marketing</h3>
<p>Learn how to leverage online platforms to grow businesses with strategies like SEO, content
marketing, and social media marketing.</p>
<a href="digital-marketing-course.html" class="cta-button">Learn More</a>
</div>
</div>
</div>
</section>
<section class="testimonial-section">
<div class="container">
<h3>Why Our Students Love Us</h3>
<p>Our students appreciate the engaging teaching methods and personalized support. Here’s what they say:</p>
<div class="quotes">
<div class="testimonial">
<p>"The courses are practical and taught by experts. I learned more than I expected in a short
amount of time!"</p>
<span>- Anjali S.</span>
</div>
<div class="testimonial">
<p>"The instructors are really supportive and the lessons are always up to date with the latest
trends in the industry."</p>
<span>- Rahul P.</span>
</div>
<div class="testimonial">
<p>"A fantastic platform for career growth. The courses are detailed, and I love the hands-on
learning approach."</p>
<span>- Priya K.</span>
</div>
</div>
</div>
</section>
<section class="education-system-section">
<div class="container">
<h3>Our Unique Education System</h3>
<p>At K.M Computers, we believe in a holistic approach to learning. Here’s how we deliver education in a
modern and effective way:</p>
<ul>
<li><i class="fas fa-chalkboard-teacher"></i> <strong>Interactive Live Sessions:</strong> Real-time
interaction with instructors ensures that all queries are answered immediately.</li>
<li><i class="fas fa-laptop-code"></i> <strong>Hands-On Learning:</strong> Practical assignments,
projects, and real-world simulations help students apply their knowledge effectively.</li>
<li><i class="fas fa-user-friends"></i> <strong>Personalized Mentorship:</strong> Each student is
assigned a mentor who guides them throughout their learning journey.</li>
<li><i class="fas fa-clock"></i> <strong>Flexible Learning Platform:</strong> Learn at your own pace,
with access to recorded classes and resources anytime, anywhere.</li>
<li><i class="fas fa-school"></i> <strong>State-of-the-Art Facilities:</strong> Our modern classrooms
and online tools ensure that students get the best learning experience possible.</li>
<li><i class="fas fa-book-open"></i> <strong>Industry-Relevant Curriculum:</strong> Our courses are
continuously updated to match the latest industry standards and trends.</li>
<li><i class="fas fa-briefcase"></i> <strong>Career Support:</strong> From resume building to job
placement assistance, we help you transition from education to employment.</li>
<li><i class="fas fa-certificate"></i> <strong>Certified Courses:</strong> All courses come with
recognized certifications that add value to your resume and career prospects.</li>
<li><i class="fas fa-dollar-sign"></i> <strong>Affordable Education:</strong> Our flexible payment
options and affordable course fees make learning accessible to everyone.</li>
<li><i class="fas fa-globe"></i> <strong>Global Reach:</strong> We offer both local and online courses,
giving you the flexibility to learn from anywhere in the world.</li>
<li><i class="fas fa-network-wired"></i> <strong>Alumni Network:</strong> Once you graduate, you become
part of our strong alumni network, opening doors to opportunities across industries.</li>
</ul>
</div>
</section>
<footer>
<div class="container">
<div class="footer-section">
<h3>Contact Us</h3>
<a href="mailto:[email protected]">[email protected]</a>
<a href="tel:+919876543210">+91 98765 43210</a>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="about.html">About Us</a>
<a href="courses.html">Our Courses</a>
<a href="contact.html">Contact</a>
<a href="privacy.html">Privacy Policy</a>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<p>© 2024 K.M Computers. All rights reserved.</p>
</footer>
</body>
</html>