-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathlearner.html
More file actions
66 lines (58 loc) · 2.29 KB
/
Copy pathlearner.html
File metadata and controls
66 lines (58 loc) · 2.29 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
<!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="variables.css">
<script src="theme.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="navbar" role="banner">
<div class="logo"><a href="index.html" aria-label="LearnSphere Home">LearnSphere</a></div>
<!-- Hamburger button — visible only on mobile -->
<button
class="hamburger"
id="hamburgerBtn"
aria-label="Toggle navigation menu"
aria-expanded="false"
aria-controls="navMenu"
>
<span></span>
<span></span>
<span></span>
</button>
<nav id="navMenu" role="navigation" aria-label="Main navigation">
<ul>
<li><a href="explore.html">Explore</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="review.html">Review Queue</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="community.html">Community</a></li>
</ul>
</nav>
<button id="themeToggleBtn" class="theme-btn" aria-label="Toggle theme"></button>
<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>Welcome, Learners!</h1>
<p>Enhance your skills and knowledge with our wide range of courses and learning resources.</p>
</div>
<div class="hero-image">
<img src="images/learner.jpeg" alt="Learners studying together">
</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="navbar.js"></script>
<script src="script.js"></script>
</body>
</html>