-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchallenges.html
More file actions
58 lines (56 loc) · 2.08 KB
/
Copy pathchallenges.html
File metadata and controls
58 lines (56 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hackloft</title>
<!-- Link to external CSS stylesheet for styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header and navigation bar -->
<header>
<nav class="navbar">
<!-- Logo section -->
<div class="logo">
<h1 >
<!-- Logo is a link back to the homepage -->
<a class="nav-heading" style="
text-decoration: none; color: #f0ad4e;
" href="index.html">Hackloft</a></h1>
</div>
<!-- Navigation links -->
<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="leader.html">LeaderBoard</a></li>
<li><a href="logout.html" class="logout-btn">Logout</a></li>
</ul>
</nav>
<!-- Title for the page -->
<h1>My Challenges</h1>
</header>
<!-- Main content section -->
<main>
<!-- Container for challenges the user has been invited to -->
<div id="challenges-container">
<!-- Challenges will be populated here -->
<h2>Challenges You Have Invited</h2>
<!-- Challenges will be dynamically populated here by JavaScript -->
</div>
<!-- Container for challenges the user has initiated -->
<div id="challenges-container-for-challenger">
<!-- Challenges will be populated here -->
<h2>Challenges You Have Challenged</h2>
<!-- Challenges will be dynamically populated here by JavaScript -->
</div>
</main>
<!-- Link to the external JavaScript file for handling challenges -->
<script src="js/challenge.js"></script>
<!-- Footer -->
<footer>
<p>© 2024 Hackloft</p>
</footer>
</body>
</html>