forked from Lakshminair9746/eduplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
62 lines (60 loc) · 3.07 KB
/
Copy pathabout.html
File metadata and controls
62 lines (60 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduPlatform - About Us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1><a href="index.html">EduPlatform</a></h1>
<nav>
<ul>
<li><a href="index.html"><span>Home</span></a></li>
<li><a href="courses.html"><span>Courses</span></a></li>
<li><a href="about.html"><span>About</span></a></li>
<li><a href="contact.html"><span>Contact</span></a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="page-hero">
<div class="container text-center">
<h2>About EduPlatform</h2>
<p>Empowering learners worldwide through accessible and quality education.</p>
</div>
</section>
<section class="section-content">
<div class="container">
<h3>Our Mission</h3>
<p>At EduPlatform, our mission is to break down barriers to education by providing high-quality, affordable, and engaging online courses to anyone, anywhere.
We believe that learning should be a lifelong journey, accessible to all, and that continuous skill development is key to personal and professional growth in a rapidly changing world.</p>
<h3>Our Vision</h3>
<p>To be the leading global platform for online education, fostering a community of passionate learners and expert instructors dedicated to mutual growth and innovation.
We envision a future where everyone has the opportunity to unlock their full potential through learning.</p>
<h3>What We Offer</h3>
<ul>
<li>**Expert-Led Courses:** Learn from industry professionals and experienced educators.</li>
<li>**Flexible Learning:** Study at your own pace, on your own schedule.</li>
<li>**Diverse Course Catalog:** From tech to creative arts, find a course for every interest.</li>
<li>**Interactive Learning Experience:** Engaging videos, quizzes, assignments, and community forums.</li>
<li>**Career-Focused Outcomes:** Gain practical skills relevant to today's job market.</li>
</ul>
<h3>Our Story</h3>
<p>Founded in 20XX, EduPlatform started with a simple idea: that quality education shouldn't be confined to traditional classrooms.
Our founders, a group of educators and technologists, envisioned a platform where knowledge could be shared and acquired without geographical or financial constraints.
Since then, we've grown into a thriving community, constantly expanding our course offerings and improving our learning experience.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 EduPlatform. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>