-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaderboard.html
76 lines (56 loc) · 1.27 KB
/
leaderboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="leaderboard.css">
<title>30 Days Of Code Leaderboard</title>
</head>
<body>
<h1 class="title">30 Days Of Code </h1><h1 class="leaderboard">Leaderboard</h1>
<div class="search-container">
<input type="text" placeholder="Search by email" id="search-bar">
</div>
<table id="leaderboard" style="display: none;">
<thead>
<tr class="only">
<th>Serial Number</th>
<th>Name</th>
<th class="email">Email</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>John Doe</td>
<td>[email protected]</td>
<td>100</td>
</tr>
<tr>
<td>2</td>
<td>Jane Smith</td>
<td>[email protected]</td>
<td>80</td>
</tr>
<tr>
<td>3</td>
<td>Bob Johnson</td>
<td>[email protected]</td>
<td>70</td>
</tr>
<tr>
<td>4</td>
<td>Alice Brown</td>
<td>[email protected]</td>
<td>60</td>
</tr>
</tbody>
<div class="new">
<h1>
Coming Soon.....
</h1>
</div>
</table>
<script src="leaderboard.js"></script>
</body>
</html>