-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 881 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
28
29
30
31
32
<!DOCTYPE html>
<html lang="fr" dir="ltr">
<head>
<meta charset="utf-8">
<title>todo land</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 id="title">Todo Land</h1>
</header>
<main>
<form>
<input type="text" id="name_of_todo">
<button type="button" id="add_todo">Add</button>
<button type="button" id="save">Sauvegarder</button>
<button type="button" id="load">Charger</button>
<button type="button" id="rm">Remove</button>
</form>
<ul>
<!--
<li class="clique">Travailler</li>
<li class="notclique">Boir une Bierre</li>
-->
</ul>
</main>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" charset="utf-8"></script>
<script src="script.js" charset="utf-8"></script>
</html>