-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.55 KB
/
index.html
File metadata and controls
48 lines (42 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LearnSphere - Quality Education</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="navbar">
<div class="logo">LearnSphere</div>
<nav>
<ul>
<li><a href="explore.html">Explore</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="community.html">Community</a></li>
</ul>
</nav>
<div class="buttons">
<button class="login"><a href="log/login.html">Log in</a></button>
<button class="signup"><a href="log\register.html">Sign up</a></button>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1>For every student, every classroom.</h1>
<h2>Real results.</h2>
<p>We aim to provide a world-class education to everyone, anywhere.</p>
<div class="cta-buttons">
<button class="cta"><a href="learner.html">Learners</a></button>
<button class="cta"><a href="teachers.html">Teachers</a></button>
<button class="cta"><a href="parents.html">Parents</a></button>
</div>
</div>
<div class="hero-image">
<img src="student.png" alt="Happy Student">
</div>
</section>
<script src="script.js"></script>
</body>
</html>