-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.html
More file actions
40 lines (36 loc) · 1.34 KB
/
stats.html
File metadata and controls
40 lines (36 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sortify</title>
<link rel="icon" href="img/icon.svg" type="image/icon type">
<link rel="stylesheet" href="style/stats-styles.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div id="options-container">
<a href="index.html">
<button class="option" id="option-new-list">
<!-- Icône pour créer une nouvelle liste -->
<img src="img/new-list-icon.svg" alt="Nouvelle Liste">
</button>
</a>
<button class="option" id="option-add-element">
<!-- Icône pour ajouter un élément à la liste actuelle -->
<img src="img/add-element-icon.svg" alt="Ajouter un Élément">
</button>
<button class="option" id="option-create-list">
<!-- Icône pour créer une nouvelle liste -->
<img src="img/create-list-icon.svg" alt="Créer une Liste">
</button>
<a href="stats.html">
<button class="option" id="option-view-stats">
<!-- Icône pour voir les statistiques -->
<img src="img/view-stats-icon.svg" href="stats.html" alt="Voir les Statistiques">
</button>
</a>
</div>
<div id="stats-container"></div>
<script src="scripts/stats-script.js"></script>
</body>
</html>