-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://logogen.gdscasu.com/logos/gdsc-logo.png" />
<link rel="stylesheet" href="styles.css">
<title>Leaderboard</title>
</head>
<body>
<div class="leaderboard" id="leaderboard" >
<div class="header">
<span class="logospan"><img class="logo" src="https://logogen.gdscasu.com/logos/gdsc-logo.png" alt="Logo"></span>
<h1>
<font color="#4285F4">L</font>
<font color="#FBBC05">E</font>
<font color="#EA4335">A</font>
<font color="#4285F4">D</font>
<font color="#34A853">E</font>
<font color="#EA4335">R</font>
<font color="#4285F4">B</font>
<font color="#34A853">O</font>
<font color="#FBBC05">A</font>
<font color="#4285F4">R</font>
<font color="#EA4335">D</font>
</h1>
<span class="logospan"><img class="logo" src="https://logogen.gdscasu.com/logos/gdsc-logo.png" alt="Logo"></span>
</div>
<div><button id="update" type="button">Update</button></div>
<div id="total" class="small">Total No. Of Participants: </div>
<div id="board"></div>
<!--add the other players-->
</div>
<div class="footer" >Made with 💙 by <a style="text-decoration: none;color: #34A853;" href="https://www.linkedin.com/in/mishal-faisal/">@Mishal</a> and <a style="text-decoration: none;color: #34A853;" href="https://www.linkedin.com/in/sheethal-joshi-60167826a/">@Sheethal</a></div>
<script type="module" src="script.js"></script>
</body>
</html>