-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
595 lines (522 loc) · 17.4 KB
/
index.html
File metadata and controls
595 lines (522 loc) · 17.4 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
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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="DeGrEBsem5uBOKtzxF5013rJLuQLGKCPGsi2s5olVAw" />
<title>Efoy Vocal - Professional Vocal Training</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
color: #333;
line-height: 1.6;
background-color: #f8f9fa;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header and Navigation */
header {
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: white;
padding: 20px 0;
position: relative;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 28px;
font-weight: 700;
letter-spacing: 1px;
}
.logo span {
color: #ffcc00;
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 30px;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ffcc00;
}
.nav-links a.active {
border-bottom: 2px solid #ffcc00;
padding-bottom: 5px;
}
.menu-toggle {
display: none;
font-size: 24px;
cursor: pointer;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
font-size: 1.5rem;
margin-bottom: 40px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
padding: 15px 30px;
background-color: #ffcc00;
color: #333;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
margin: 10px;
transition: all 0.3s;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: #ffd633;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-outline {
background-color: transparent;
border: 2px solid white;
color: white;
}
.btn-outline:hover {
background-color: white;
color: #333;
}
/* About Section */
.about {
padding: 80px 0;
background-color: white;
}
.section-title {
text-align: center;
margin-bottom: 50px;
color: #333;
position: relative;
}
.section-title:after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(to right, #6a11cb, #2575fc);
margin: 15px auto;
border-radius: 2px;
}
.about-content {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 40px;
}
.about-text {
flex: 1;
min-width: 300px;
}
.stats {
display: flex;
justify-content: space-around;
margin-top: 30px;
flex-wrap: wrap;
}
.stat-item {
text-align: center;
padding: 20px;
min-width: 150px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #6a11cb;
margin-bottom: 5px;
}
.stat-label {
font-size: 1rem;
color: #666;
}
/* Courses Section */
.courses {
padding: 80px 0;
background-color: #f0f4ff;
}
.course-cards {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.course-card {
background: white;
border-radius: 10px;
overflow: hidden;
width: 100%;
max-width: 350px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.course-card:hover {
transform: translateY(-10px);
}
.course-img {
height: 200px;
background-size: cover;
background-position: center;
}
.course-content {
padding: 25px;
}
.course-content h3 {
margin-bottom: 15px;
color: #333;
}
.course-content p {
color: #666;
margin-bottom: 20px;
}
/* Why Choose Us Section */
.why-us {
padding: 80px 0;
background-color: white;
}
.features {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.feature {
flex: 1;
min-width: 250px;
text-align: center;
padding: 30px 20px;
border-radius: 10px;
background-color: #f8f9fa;
transition: transform 0.3s;
}
.feature:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.feature i {
font-size: 2.5rem;
color: #6a11cb;
margin-bottom: 20px;
}
.feature h3 {
margin-bottom: 15px;
color: #333;
}
.feature p {
color: #666;
}
/* Testimonials Section */
.testimonials {
padding: 80px 0;
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: white;
}
.testimonial-cards {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 30px;
width: 100%;
max-width: 500px;
backdrop-filter: blur(10px);
}
.testimonial-text {
font-style: italic;
margin-bottom: 20px;
font-size: 1.1rem;
}
.testimonial-author {
font-weight: 600;
text-align: right;
}
/* Footer */
footer {
background-color: #1a1a1a;
color: #ccc;
padding: 60px 0 30px;
}
.footer-content {
display: flex;
flex-wrap: wrap;
gap: 40px;
justify-content: space-between;
margin-bottom: 40px;
}
.footer-section {
flex: 1;
min-width: 250px;
}
.footer-section h3 {
color: white;
margin-bottom: 20px;
font-size: 1.3rem;
}
.footer-section p {
margin-bottom: 15px;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #444;
}
/* Responsive Design */
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.nav-links {
position: absolute;
top: 100%;
left: 200px;
width: 50%;
background-color: #6a11cb;
flex-direction: column;
align-items: center;
padding: 20px 0;
clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
transition: clip-path 0.4s ease;
}
.nav-links.active {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.nav-links li {
margin: 15px 0;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
.about-content {
flex-direction: column;
}
.stat-item {
min-width: 120px;
}
}
@media (max-width: 480px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.btn {
padding: 12px 25px;
font-size: 0.9rem;
}
.section-title {
font-size: 1.8rem;
}
.stat-number {
font-size: 2rem;
}
}
</style>
</head>
<body>
<!-- Header & Navigation -->
<header>
<div class="container">
<nav>
<div class="logo">Efoy<span>Vocal</span></div>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="programs.html">Programs</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Find Your Voice.<br>Master Your Sound.</h1>
<p>Professional Vocal & Musical Training for All Ages</p>
<div class="hero-buttons">
<a href="contact.html" class="btn">Book a Free Trial</a>
<a href="course.html" class="btn btn-outline">View Courses</a>
</div>
</div>
</section>
<!-- About Section -->
<section class="about">
<div class="container">
<h2 class="section-title">About Efoy Vocal</h2>
<div class="about-content">
<div class="about-text">
<p>Welcome to Efoy Vocal Musical Training. Our mission is to help individuals of all ages discover and develop their unique vocal abilities in a supportive and inspiring environment.</p>
<div class="stats">
<div class="stat-item">
<div class="stat-number">10+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat-item">
<div class="stat-number">1000+</div>
<div class="stat-label">Students Trained</div>
</div>
<div class="stat-item">
<div class="stat-number">98%</div>
<div class="stat-label">Satisfaction Rate</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section class="courses">
<div class="container">
<h2 class="section-title">Our Courses</h2>
<div class="course-cards">
<div class="course-card">
<div class="course-img" style="background-image: url('images/pic1.jpg');"></div>
<div class="course-content">
<h3>Beginner Vocal Training</h3>
<p>Build a strong foundation with proper breathing techniques, pitch control, and vocal exercises.</p>
<a href="#" class="btn">Learn More</a>
</div>
</div>
<div class="course-card">
<div class="course-img" style="background-image: url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');"></div>
<div class="course-content">
<h3>Advanced Vocal Coaching</h3>
<p>Refine your technique, expand your range, and develop your unique artistic expression.</p>
<a href="#" class="btn">Learn More</a>
</div>
</div>
<div class="course-card">
<div class="course-img" style="background-image: url('https://images.unsplash.com/photo-1465847899084-d164df4dedc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');"></div>
<div class="course-content">
<h3>Music Theory & Instruments</h3>
<p>Learn music theory, piano, guitar, and more to become a well-rounded musician.</p>
<a href="#" class="btn">Learn More</a>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us Section -->
<section class="why-us">
<div class="container">
<h2 class="section-title">Why Choose Us</h2>
<div class="features">
<div class="feature">
<i class="fas fa-user-tie"></i>
<h3>Professional Coaches</h3>
<p>Our instructors are experienced professionals with years of teaching and performance experience.</p>
</div>
<div class="feature">
<i class="fas fa-trophy"></i>
<h3>Proven Success Stories</h3>
<p>Many of our students have gone on to successful careers in music and performing arts.</p>
</div>
<div class="feature">
<i class="fas fa-sliders-h"></i>
<h3>Personalized Training</h3>
<p>We tailor our lessons to your individual goals, learning style, and current ability level.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials">
<div class="container">
<h2 class="section-title" style="color: white;">Testimonials</h2>
<div class="testimonial-cards">
<div class="testimonial-card">
<p class="testimonial-text">"Efoy training boosted my confidence on stage! The instructors are amazing and really care about your progress."</p>
<p class="testimonial-author">- Sarah M.</p>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"I went from a complete beginner to performing at local events in just 6 months. The personalized approach really works!"</p>
<p class="testimonial-author">- john A.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Efoy Vocal</h3>
<p>Professional vocal and musical training for all ages and skill levels.</p>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p><i class="fas fa-map-marker-alt"></i> Alebrt Academy, Sinedos village <br> Jossy studio, Choramo Plazz.
</p>
<p><i class="fas fa-phone"></i>+251928832383</p>
<p><i class="fas fa-envelope"></i> assefahenok33@gmail.com</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<p><a href="about.html">About Us</a></p>
<p><a href="course.html">Courses</a></p>
<p><a href="pricing.html">Pricing</a></p>
<p><a href="contact.html">Contact</a></p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Efoy Vocal. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('.menu-toggle').addEventListener('click', function() {
document.querySelector('.nav-links').classList.toggle('active');
});
</script>
</body>
</html>