-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblems.html
More file actions
50 lines (45 loc) · 1.67 KB
/
problems.html
File metadata and controls
50 lines (45 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><a href="index.html">Hackloft</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<h1 ><a class="nav-heading" style="
text-decoration: none; color: #f0ad4e;
" href="index.html">Hackloft</a></h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="problems.html">Problems</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="challenges.html">Challenges</a></li>
<li><a href="leader.html">LeaderBoard</a></li>
<li><a href="logout.html" class="logout-btn">Logout</a></li>
</ul>
</nav>
</header>
<section class="problems">
<h3>Available Problems</h3>
<!-- Dropdown to filter problems by difficulty -->
<label for="difficulty-select">Filter by Difficulty:</label>
<select id="difficulty-select" class="difficulty-select">
<option value="All">All</option>
<option value="Easy">Easy</option>
<option value="Medium">Medium</option>
<option value="Hard">Hard</option>
</select>
<!-- List of problems will be populated here -->
<div id="problem-list" class="problem-list"></div>
</section>
<footer>
<p>© 2024 Hackloft</p>
</footer>
<script src="js/problems.js"></script>
</body>
</html>