-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathranking.html
More file actions
37 lines (32 loc) · 1.17 KB
/
ranking.html
File metadata and controls
37 lines (32 loc) · 1.17 KB
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
<!doctype html>
<html lang="ca">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>RepteX — Rànquing</title>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="assets/favicon.ico" type="image/ico">
</head>
<body>
<div id="site-header"></div>
<main class="container">
<section class="card">
<h1>Rànquing</h1>
<p class="muted" style="color: rgb(95, 45, 1); font-size: 25px;"><b>NO OPERATIU</b></p>
<div id="ranking-table" class="table-wrap" aria-live="polite"></div>
</section>
</main>
<div id="site-footer"></div>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-database-compat.js"></script>
<script type="module" src="firebase.js"></script>
<script src="script.js"></script>
<script>
document.addEventListener('DOMContentLoaded', async () => {
await includeHeaderFooter();
loadRanking();
});
</script>
</body>
</html>