-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 2.33 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Let's Plan</title>
<meta charset="utf-8">
<link rel='stylesheet' href='style.css'>
</head>
<body>
<!--DIGITAL CLOCK-->
<div id='clockDiv'>
<span id='clock'></span>
</div>
<!--TO-DO LIST-->
<div id='overlay'>
<div id='todo'>
<br>
<span class="heading">  Tasks to do</span>
<span><button id="shut" onclick="shut()">X</button></span>
<div id=tasks>
<form id="addtask">
<input type="date" placeholder="dd/mm/yyyy" class="addDate"> 
<input type="text" placeholder="Add Event..." />
<span><button id='add'>Add</button></span>
</form>
<ul id="list">
<li>
<span class="tdate">16-06-2021</span>
 
<span class="name">Music Concert</span>
<span class="delete" onclick="remove()">Delete</span>
<span class="complete" onclick="done()">Done</span>
</li>
</ul>
</div>
</div>
</div>
<div id="calender">
<div id='mname'>JUNE 2021</div>
<div id='btn'>
<button id='previous' onclick="previous()"><</button>
<button id='td' onclick="todo()">Add Task</button>
<button id='next' onclick="next()">></button>
</div>
<!--DAYS OF WEEK-->
<div class="days">
<div class="day" id='sday'>Sun </div>
<div class="day">Mon  </div>
<div class="day">Tue  </div>
<div class="day">Wed  </div>
<div class="day">Thu  </div>
<div class="day">Fri   </div>
<div class="day">Sat   </div>
</div>
<!--DATE-->
<div id="dates">
</div>
</div>
<script src='script.js'></script>
</body>
</html>