-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (60 loc) · 2.52 KB
/
about.html
File metadata and controls
65 lines (60 loc) · 2.52 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
<!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 rel="stylesheet" href="styles.css"> <!-- Link to your stylesheet -->
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</header>
<main>
<!-- Introduction Section -->
<section class="about-intro">
<h1>About Us</h1>
<p>Welcome to our e-learning platform! We are dedicated to providing quality education accessible to everyone, everywhere. Our mission is to empower learners through innovative technology and engaging content.</p>
</section>
<!-- Mission Section -->
<section class="mission">
<h2>Our Mission</h2>
<p>Our mission is to make education more accessible and enjoyable by leveraging technology to create engaging and interactive learning experiences. We believe that learning should be a lifelong journey, and we strive to provide the tools and resources needed for continuous personal and professional development.</p>
</section>
<!-- Team Section -->
<section class="team">
<h2>Meet Our Team</h2>
<div class="team-member">
<img src="path/to/team-member1.jpg" alt="Team Member 1">
<h3>John Doe</h3>
<p>Founder & CEO</p>
</div>
<div class="team-member">
<img src="path/to/team-member2.jpg" alt="Team Member 2">
<h3>Jane Smith</h3>
<p>Chief Learning Officer</p>
</div>
<!-- Add more team members as needed -->
</section>
<!-- Contact Section -->
<section class="contact-info">
<h2>Contact Us</h2>
<p>If you have any questions, feel free to reach out to us:</p>
<p>Email: support@elearning.com</p>
<p>Phone: +1 (123) 456-7890</p>
</section>
</main>
<footer>
<p>© 2024 E-Learning Website. All rights reserved.</p>
</footer>
</body>
</html>