-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.75 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.75 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
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sortify</title>
<link rel="icon" href="img/icon.svg" type="image/icon type">
<link rel="stylesheet" href="style/styles.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div class="container">
<div id="options-container">
<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>
<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="card-container">
<button class="card" id="card-left">
<!-- Contenu de la carte gauche -->
<img src="img/chocolatine.png" id="img-left" alt="Element 1">
</button>
<button class="card" id="card-right">
<!-- Contenu de la carte droite -->
<img src="img/pain-au-chocolat.png" id="img-right" alt="Element 2">
</button>
</div>
<!-- Score display -->
<div id="score-display"></div>
</div>
<script src="scripts/script.js"></script>
</body>
</html>