-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchallenges.html
More file actions
48 lines (45 loc) · 1.3 KB
/
challenges.html
File metadata and controls
48 lines (45 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Challenges</title>
<link rel="stylesheet" href="styles.css">
<script type="module">
import { initApp } from './scripts.js';
initApp();
</script>
</head>
<body>
<!-- Header -->
<header>
<h1>Custom Challenges</h1>
</header>
<!-- Navbar -->
<nav>
<a href="/">Home</a>
<a href="/leaderboard.html">Leaderboard</a>
<a href="/hall-of-shame.html">Hall of Shame</a>
<a href="/invite.html">Invite System</a>
<a href="/attendance.html">Attendance</a>
<a href="/match-history.html">Match History</a>
<a href="/memes.html">Meme Wall</a>
<a href="/challenges.html">Challenges</a>
<a href="/profiles.html">Profiles</a>
<a href="/events.html">Events</a>
</nav>
<!-- Main Content -->
<main>
<p>Complete these silly challenges:</p>
<ul>
<li>Win a round using only Sheriff.</li>
<li>Teabag 3 enemies in one match.</li>
</ul>
</main>
<!-- Footer -->
<footer>
<p>Made with ❤️ by Your Valorant Community</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>