-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml
More file actions
69 lines (62 loc) · 1.73 KB
/
html
File metadata and controls
69 lines (62 loc) · 1.73 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
# html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EduLearn | Online Education</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">EduLearn</div>
<nav>
<a href="#home">Home</a>
<a href="#courses">Courses</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="home" class="hero">
<h1>Learn Anytime, Anywhere</h1>
<p>Professional online education platform</p>
<button onclick="scrollToCourses()">Explore Courses</button>
</section>
<section id="courses" class="courses">
<h2>Our Courses</h2>
<div class="course-list">
<div class="course-card">
<h3>Web Development</h3>
<p>HTML, CSS, JavaScript & more</p>
</div>
<div class="course-card">
<h3>Python Programming</h3>
<p>Beginner to Advanced</p>
</div>
<div class="course-card">
<h3>Data Science</h3>
<p>Analytics & Machine Learning</p>
</div>
</div>
</section>
<section id="about" class="about">
<h2>About Us</h2>
<p>
EduLearn is a modern e-learning platform providing quality education
from industry experts to students worldwide.
</p>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2026 EduLearn. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>