-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.39 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.39 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Todo List</title>
</head>
<body>
<div class="lavender">
<div class="theme">
<span class="theme-icon"></span>
<div class="theme-selector">
<span class="lavender-theme" onclick="theme(0)"></span>
<span class="orange-theme" onclick="theme(1)"></span>
<span class="aqua-theme" onclick="theme(2)"></span>
<span class="lime-theme" onclick="theme(3)"></span>
</div>
</div>
</div>
<div class="calendar" onclick="calendar()"><a href="cal.html"><img id="cal" src="public/images/calendar.png" alt=""></a></div>
<div class="lightOrDark" onclick="lightDarkToggle(0)">☀︎</div>
<div class="lavender"><h3>todos</h3></div>
<span class="greeting"></span>
<div class="quotes-container" id="quotes-container">
<p class="quote" id="quote">
</p>
</div>
<div class="lavender">
<form id="form">
<input type="text" class="input" id="input" placeholder="Enter your todo" autocomplete="off">
<ul class="todos" id="todos"></ul>
</form>
</div>
<small>Left click to toggle completed. <br> Right click to delete todo</small>
<script src="script.js"></script>
</body>
</html>