-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (61 loc) · 2.76 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
<!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" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Task App</title>
</head>
<body>
<div class="container">
<!-- todo notification -->
<div class="toaster-notification">
<p class="notification-delete">your task has been deleted...</span>
<p class="notification-added">task added...</span>
<p class="notification-completed">task completed...</span>
</div>
<!-- todo count show -->
<div class="taskCound">
<i class="fas fa-tasks taskShowIcon"></i>
<div class="taskDisplay">Total Task <span class="totalTaskNumber"></span></div>
</div>
<!-- todo form -->
<div class="form">
<input type="text" placeholder="Enter Your Task" class="todo-input" />
<button class="todo-button">
<i class="fa-sharp fa-solid fa-plus"></i>
</button>
</div>
<!-- Edite Task Overlay -->
<div class="overlay">
<div class="taskEditeOverlay">
<div class="taskEdite">
<i class="fa-sharp fa-regular fa-circle-xmark overlayClose"></i>
<input type="text" placeholder="Enter Your New Task" class="todo-edite-input" />
<button class="todo-edite-button">
<i class="fa-sharp fa-solid fa-plus"></i>
</button>
</div>
</div>
</div>
<!-- Toster -->
<div class="toster">Please enter a task <span>☝</span></div>
</div>
<!-- aside bar -->
<div class="aslide-bar">
<div class="asideBar-taskMenu">
<div class="asideBar-icons">
<i class="fa-solid fa-caret-left asideBar-left-icon"></i>
<i class="fa-solid fa-caret-right asideBar-right-icon"></i>
</div>
<h1 class="aside-heading">Your Task</h1>
<!-- todo task add -->
<div class="todo-list"></div>
</div>
</div>
<div class="copyright"><p>Made With ❤️ By <a href="https://jaimindev.blogspot.com">Jaimin Patel</a></p></div>
</body>
</html>
<script src="app.js"></script>