29 lines
766 B
HTML
29 lines
766 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Leaderboard</title>
|
|
<link rel="stylesheet" href="Leaderboard.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="particles"></div>
|
|
|
|
<button class="btn-back" onclick="location.href='Homepage.html'">
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" />
|
|
</svg>
|
|
</button>
|
|
|
|
<div class="container">
|
|
<h1>Leaderboard</h1>
|
|
|
|
<ul class="leaderboard-list" id="leaderboardList"></ul>
|
|
|
|
</div>
|
|
|
|
<script src="Leaderboard.js"></script>
|
|
<script src="Animation_Leaderboard.js"></script>
|
|
</body>
|
|
</html> |