-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
53 lines (46 loc) · 1.5 KB
/
index.htm
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
<!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>TODO Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="head">
<h1>TO-DO List</h1>
<p>By divyesh vyas</p>
</div>
<section id="container">
<div id="todo">
<div id="nav">
<input type="date" id="datepick">
<label for="colorpicker"> Pick Color</label>
<input type="color" id="colorpicker" value="#000000">
</div>
<div id="input">
<input type="text" placeholder=" To do...">
<button id="btn">ADD</button>
</div>
<div id="title">
<h2>Task List</h2>
</div>
<div id="clrAll">
<p> You have 0 Task To Do... </p>
<button id="clear">Clear All</button>
</div>
<div id="list">
<!-- <div class="lists">
<span>Task To be done...</span>
<div>
<button class="done">Done</button>
<button class="delbtn">X</button>
</div>
</div> -->
</div>
</div>
</section>
<script src="todo.js"></script>
</body>
</html>