-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="gdscfavi.png" type="image/x-icon">
<title>GDSC RVCE Leaderboard</title>
<style>
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="https://gdsc.community.dev/rv-college-of-engineering-bengaluru/"><img src="RVCE.jpg" alt="GDSC Logo"></a>
</div>
</nav>
<img class="gcloud_logo" src="cloudLg.png" alt="Google Cloud Logo", width="5%">
<h1>
GDSC RVCE Gen AI Study Jam Leaderboard</h1>
<div class="search-bar">
<input type="text" id="search" placeholder="Search participants...">
</div>
<table id="leaderboard">
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Redemption Status</th>
<th>Prompt Design</th>
<th>Develop Gen AI Apps with Streamlit</th>
<th>Gen AI Arcade Games Completed</th>
</tr>
</thead>
<tbody>
<!-- Leaderboard data will be inserted here using JavaScript -->
</tbody>
</table>
<script src="script.js"></script>
</body>
</html>