This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (74 loc) · 2.7 KB
/
index.html
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
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
href="./Assets/geekhaven_lightmode.png"
type="image/x-icon"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-skAcpIdS7UcVUC05LJ9Dxay8AXcDYfBJqt1CJ85S/CFujBsIzCIv+l9liuYLaMQ/"
crossorigin="anonymous"
></script>
<!-- Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<!-- Our Css -->
<link rel="stylesheet" href="./style.css" />
<title>GeekCamp' 23 Leaderboard</title>
</head>
<body>
<div id="tsparticles" class=".fade-out"></div>
<nav>
<div class="menu-icon">
<span class="fas fa-bars"></span>
</div>
<div class="nav-items">
<li>
<a href="#"><i class="fas fa-home"></i> Home</a>
</li>
<li>
<a href="details.html" class="Search"
><i class="fas fa-search"></i> Search</a
>
</li>
</div>
</nav>
<div id="toggle">
<i class="indicator"> </i>
</div>
<header>
<h1 class="heading">
GeekCamp'
<span class="textAnimation" style="font-size: 2.5rem">23 </span>
<span> Leaderboard!</span>
</h1>
<h2 class="subHeading">Organised by <strong>Geekhaven</strong></h2>
<img
id="geekhaven_logo"
class="logo-img"
alt="GeekHaven Logo"
width="90px"
src="./Assets/geekhaven_lightmode.png"
/>
</header>
<ul class="rank-list"></ul>
<img class="loader hide" src="./Assets/loader.svg" alt="Loader" />
<h2 id="end" style="display: none">That's All Folks</h2>
<script src="./index.js"></script>
<script src="./confetti.js"></script>
</body>
</html>