-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (80 loc) · 3.88 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>To-do list</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="to-do-list/assets/css/styles.css" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
</head>
<body>
<!-- tâches -->
<h1 class="container-top">To-do list</h1>
<main>
<section>
<div>
<h2 style="color: green;" class="box">A faire</h2>
</div>
<div class="element-box">
<h3>Laver ma chambre</h3>
<p class="description">Apirer, ranger, poussière</p>
<button style="background-color: green;" class="texte-button">A faire</button>
<button style="background-color: #FF7C00;" class="texte-button">En cours</button>
<button style="background-color: #e74a3b;" class="texte-button">Finis</button>
<button style="background-color: red;" class="texte-button">Supprimer</button>
</div>
<p class="nombres">Nombre(s) de tâche(s): 1</p>
</section>
<section>
<div>
<h2 style="color: #FF7C00;" class="box">En cours</h2>
</div>
<div class="element-box">
<h3>Faire le site to-do list</h3>
<p class="description">Suivre le cahier des charges</p>
<button style="background-color: green;" class="texte-button">A faire</button>
<button style="background-color: #FF7C00;" class="texte-button">En cours</button>
<button style="background-color: #e74a3b;" class="texte-button">Finis</button>
<button style="background-color: red;" class="texte-button">Supprimer</button>
</div>
<div class="element-box">
<h3>Faire le site to-do list</h3>
<p class="description">Suivre le cahier des charges</p>
<button style="background-color: green;" class="texte-button">A faire</button>
<button style="background-color: #FF7C00;" class="texte-button">En cours</button>
<button style="background-color: #e74a3b;" class="texte-button">Finis</button>
<button style="background-color: red;" class="texte-button">Supprimer</button>
</div>
<p class="nombres">Nombre(s) de tâche(s): 2</p>
</section>
<section>
<div>
<h2 style="color: red;" class="box">Finis</h2>
</div>
<div class="element-box">
<h3>Tondre</h3>
<p class="description" class="texte-button">Vider le bac de la tondeuse</p>
<button style="background-color: green;" class="texte-button">A faire</button>
<button style="background-color: #FF7C00;" class="texte-button">En cours</button>
<button style="background-color: #e74a3b;" class="texte-button">Finis</button>
<button style="background-color: red;" class="texte-button">Supprimer</button>
</div>
<p class="nombres">Nombre(s) de tâche(s): 1</p>
</section>
</main>
<!-- Création de tâche -->
<div class="container-down">
<h2>Ajouter une tâche</h2>
<form class="form-group">
<input id='titre' type="text" placeholder="Titre de la tâche">
<textarea id="desc" name="desc" rows="5" cols="33" placeholder="Description de la tâche"></textarea>
<input type="date">
<button class="add" href="#">Créer</button>
</form>
</div>
<!-- Footer -->
<footer>
<p class="footer-name">Site développer par <a href="https://github.com/Milo-star">Milo</a></p>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>