-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To do list</title>
<link rel="stylesheet" href="ressources\style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="icon" href="ressources\image\to-do-list.png">
</head>
<body>
<div id="container">
<div class="head">
<div class="title">to do list</div>
<div id="date"></div>
<div class="add">
<input id="input" type="text" placeholder="things to be done">
<button id="btn">Add</button>
</div>
</div>
<div class="content">
<ul id = "ul">
<!--<li>
<input type="checkbox">
<div class="task">Task1 </div>
<i class="fa-solid fa-trash-can"></i>
</li>-->
</ul>
</div>
</div>
<div id="modal">
<p>you should add something</p>
<button id = "ok">OK</button>
</div>
<div id="modal_delete">
<p>are you sure?</p>
<button id = "yes">YES</button>
<button id = "no">NO</button>
</div>
</body>
<script src = "ressources\script.js"></script>
</html>