-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-do-list.html
60 lines (58 loc) · 2.11 KB
/
to-do-list.html
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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>to-do-list</title>
<link rel="stylesheet" href="to-do-list.css">
</head>
<body>
<h1>
To-do list
</h1>
<div class="menu_conrainer">
<section class="menu">
<div class="input_container">
<label for="tache">Tâche à accomplir</label>
<input type="text" id="tache" placeholder="Tâche à accomplir">
</div>
<div class="input_container">
<label for="categorie">Catégorie</label>
<select name="catégorie" id="categorie">
<option value="--choisissez une catégorie--">--choisissez une catégorie--</option>
<option value="HETIC">HETIC</option>
<option value="Projet-Reyk">Projet Reyk</option>
<option value="Atelier-Théâtre">Atelier Théâtre</option>
<option value="Maison">Maison</option>
</select>
</div>
<input type="button" name="Ok" id="ok" value="Ok">
</section>
<div class="addcat">
<label for="ajout-categorie">Ajoutez une catégorie</label>
<input type="text" name="" id="ajout-categorie">
<input type="button" value="Ok" id="ajout-categorie-ok">
</div>
</div>
<div class="span_container">
<span> Nombre de tâches actives <span id="tasknb"></span></span>
<span>Nombre de tâches terminées <span id="donetasknb"></span></span>
</div>
<section>
<table id="table">
<thead>
<tr>
<th> Nom de la tâche</th>
<th> Catégorie</th>
<th>Accomplissement</th>
<th>Supprimer</th>
</tr>
</thead>
<tbody id="tablebody">
</tbody>
</table>
</section>
<script src="to-do-list.js"></script>
</body>
</html>