-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
47 lines (39 loc) · 1.25 KB
/
menu.html
File metadata and controls
47 lines (39 loc) · 1.25 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
<!-- Rolando -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindMaster - Choose Level</title>
<link rel="stylesheet" href="/style/menu.css">
</head>
<body>
<header>
<h2><a href="index.html" style="text-decoration: none; color: inherit;">MindMaster Quiz</a></h2>
<h3>Your companion in mental wellness.</h3>
</header>
<main>
<h2>JavaScript Quiz</h2>
<h3>Select a difficulty</h3>
<div class="container">
<div class="option" data-level="beginner">Beginner</div>
<div class="option" data-level="intermediate">Intermediate</div>
<div class="option" data-level="pro">Pro</div>
<div class="option" data-level="advanced">Advanced</div>
</div>
</main>
<footer>
<p>Creators</p>
<p>Alejandro | Antwaun | Saira | Roland</p>
<p>©2025 MindMaster. All rights reserved.</p>
</footer>
<script>
document.querySelectorAll(".option").forEach(option => {
option.addEventListener("click", () => {
const level = option.dataset.level;
window.location.href = `quiz.html?level=${level}`;
});
});
</script>
</body>
</html>