-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.53 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.53 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
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 rel="stylesheet" href="style.css" />
<title>♟️ Chess Tracker</title>
</head>
<body>
<div class="w3-bar w3-green">
<a href="/ChessTracker" class="w3-bar-item w3-button">Accueil</a>
<a href="classement" class="w3-bar-item w3-button">Classement</a>
<a href="historique" class="w3-bar-item w3-button">Historique</a>
<a href="matelo" class="w3-bar-item w3-button">classement par mat-élo</a>
<a
href="https://github.com/Knackie/ChessTracker"
class="w3-bar-item w3-button"
>Github</a
>
</div>
<div id="Classement" class="classement">
<h1>Classement</h1>
<div id="First" style="cursor: pointer" class="shadow">🥇</div>
<div id="Second" style="cursor: pointer" class="shadow">🥈</div>
<div id="Third" style="cursor: pointer" class="shadow">🥉</div>
<a href="classement">Voir le classement complet</a>
</div>
<div id="space" class="space"></div>
<div id="Historique" class="classement">
<h1>Historique</h1>
<div id="HistoFirst0" class="shadow"></div>
<div id="HistoFirst1" class="shadow"></div>
<div id="HistoFirst2" class="shadow"></div>
<a href="historique">Voir l'historique complet</a>
</div>
</body>
<script src="core/config.js"></script>
<script src="core/player-details.js"></script>
<script src="core/index.js"></script>
</html>