-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
120 lines (102 loc) · 3.22 KB
/
about.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About US</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<style>
.section {
padding: 5rem 2rem;
text-align: center;
}
.section__title {
font-size: 3rem;
font-weight: 600;
margin-bottom: 1.5rem;
letter-spacing: -1.5px;
}
.section__content {
font-size: 1.6rem;
font-weight: 400;
margin-bottom: 2.5rem;
opacity: 0.9;
letter-spacing: 0.5px;
}
.call-to-action {
border-top-right-radius: 15px;
border-top-left-radius: 15px;
background: linear-gradient(135deg, #6c5ce7, #a29bfe);
color: white;
animation: fadeInUp 1s ease-out forwards;
}
.features {
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
background: linear-gradient(135deg, #ff6b81, #ff9a9e);
color: white;
animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.btn {
font-size: 1.6rem;
font-weight: 600;
padding: 1.3rem 3rem;
background-color: #ff6b81;
color: white;
border-radius: 50px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.btn:hover {
background-color: #d65a71;
transform: scale(1.05);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
.section__title {
font-size: 2.5rem;
}
.section__content {
font-size: 1.4rem;
}
}
</style>
<body>
<?php include 'includes/header.php' ?>
<div class="container">
<section class="section call-to-action">
<h2 class="section__title">Start Learning Today!</h2>
<p class="section__content">Don't wait to improve your English. Click below to start practicing and
exploring
our lessons!</p>
<button class="btn" onclick="window.location.href='lessons.php'">Start Learning</button>
</section>
<br>
<section class="section features">
<h2 class="section__title">Features of Letter edu</h2>
<p class="section__content">Our platform offers a variety of features to help you succeed:</p>
<ul style="font-size: 1.5rem; text-align: left; margin-left: 15%; max-width: 800px; line-height: 1.8;">
<li>Interactive Lessons for Different Levels</li>
<li>Real-time Vocabulary Building Exercises</li>
<li>Grammar and Pronunciation Practice</li>
<li>Progress Tracking & Personalized Recommendations</li>
<li>Quizzes and Tests to Reinforce Learning</li>
</ul>
</section>
</div>
<?php include 'includes/footer.php' ?>
</body>
</html>