-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (73 loc) · 2.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>📝</text></svg>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<script src="https://raw.githack.com/SortableJS/Sortable/master/Sortable.js"></script>
<title>ToDo List ✨ </title>
</head>
<body>
<div class="header"></div>
<main>
<div class="content">
<h2 class="content_title">TODO</h2>
<!--Dark Mode Swich -->
<div class="theme-switch-wrapper">
<span class="toggle-icon">
<img class="icon" src="images/icon-light.svg" alt="" />
</span>
<label class="theme-switch">
<input class="input_darkmode" type="checkbox" />
</label>
</div>
</div>
<form class="addTodo">
<button type="submit" class="btn addNewBtn" aria-label="button">
<span class="plusSign custom_checkbox">+</span>
</button>
<input class="addNew" name="add" type="text" id="create" placeholder="Create a new todo..."
aria-label="Create a new todo..." />
</form>
<div class="container">
<div class="alert"></div>
<div class="card">
<div>
<ul class="tasks"></ul>
</div>
<div class="task items_left">
<p class="counter">5 items left</p>
<button class="btn clear">Clear Completed</button>
</div>
</div>
<div class="bottom">
<div class="buttons filter-todos">
<button class="btn all active" value="all">All</button>
<button class="btn activeBtn" value="active">Active</button>
<button class="btn completed" value="completed">Completed</button>
</div>
</div>
</div>
</main>
<template id="task-template" style="position: relative;">
<li class=" task">
<input class="task-input" type="checkbox" />
<label>
<span class="custom_checkbox"></span>
</label>
<span class="deleteBtn">
<img class="delete" src="images/icon-cross.svg" alt="" />
</span>
</li>
</template>
<script src="dark.js"></script>
<script src="script.js"></script>
</body>
<footer class="footer">
<h6>Desgined and Developed by <a href="https://swamithedev.vercel.app" target="_blank">Swamithedev</a></h6>
</footer>
</html>