-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taskn</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/9783530849.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="inputbox">
<h1 id="tHeader">TASK<span id='sLett'>N</span></h1>
<p class="p1">Organize Your Day</p>
<div>
<div id="inputs">
<input id="toDo" type="text" placeholder="Eg: Learn JavaScript" value="Learn JavaScript" required>
<input id="taskDate" type="date" min="" value="" required>
</div>
<button id="smbtn">Submit</button><br>
<span id="message"></span>
</div>
</div>
<br>
<div id='todoList'>
<div class='output'>
<h3 class="taskHeader">You have not added any task yet!</h3>
<ul id="probody"></ul>
<div id="lists"></div>
<div id='completedList'>
<h3 id="completedHeader">Completed</h3>
<ul id="completedbody"></ul>
</div>
<div id="clearBox"><button id="clear">Clear List</button></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>