-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html lang="fr">
<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</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css" />
<link rel="stylesheet" href="screen.css">
</head>
<body>
<header>
<h1>to do</h1>
</header>
<main class="todo-wrapper">
<form class="add-todo">
<input type="text" class="todo-input" placeholder="Tâche à faire...">
<button type="submit" class="todo-btn"><i class="fas fa-plus"></i></button>
</form>
<section class="todo-container">
<ul class="todo-list">
</ul>
</section>
</main>
<script src="app.js"></script>
</body>
</html>