-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexplore.html
More file actions
45 lines (41 loc) · 1.52 KB
/
explore.html
File metadata and controls
45 lines (41 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learners - LearnSphere</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="navbar">
<div class="logo"><a href="index.html">LearnSphere</a></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>Explore New Possibilities</h1>
<p>Find courses, articles, and interactive learning experiences.</p>
</div>
<div class="hero-image">
<img src="images/explore.jpg" alt="Exploring educational resources">
</div>
</section>
<section class="content">
<h2>Why LearnSphere?</h2>
<p>We offer a variety of courses designed to help you excel in academics and beyond.</p>
<button class="cta">Start Learning</button>
</section>
<script src="script.js"></script>
</body>
</html>