-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
227 lines (200 loc) · 9.75 KB
/
index.html
File metadata and controls
227 lines (200 loc) · 9.75 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="apple-touch-icon" sizes="180x180" href="./meta/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./meta/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./meta/favicon-16x16.png" />
<link rel="manifest" href="./meta/site.webmanifest" />
<link rel="mask-icon" href="./meta/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#2d89ef" />
<meta name="theme-color" content="#ffffff" />
<link rel="stylesheet" href="./style.css">
<title>TaskNest -To Do List</title>
<meta
name="description"
content="Manage your tasks effortlessly with our JavaScript Todos List App. Organize, prioritize, and track your to-dos seamlessly using this user-friendly web application."
/>
<meta
name="keywords"
content="JavaScript Todos List App, Task Management, To-Do List Web App, Organize Tasks, Track To-Dos, Simple Task Manager, Productivity Tool, User-Friendly Interface, Web-based Task Organizer, JavaScript Task Tracker"
/>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Semantic UI -->
<link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
<script src= "https://code.jquery.com/jquery-3.1.1.min.js"> </script>
<script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script>
</head>
<body>
<!-- boy icon - <img width="40" height="40" src="https://img.icons8.com/doodle/48/boy.png" alt="boy"/> -->
<div class="wrapper">
<div class="screen-backdrop"></div>
<div class="home-screen screen">
<!-- profile and weather section -->
<section class="header">
<div class="profile">
<img class="profile-image" width="30" height="30" src="assets/category/girl.png" alt="boy"/>
</div>
<div class="weather">
<div>
<img class="weather-icon" width="30" height="30" src="" alt="sun"/>
</div>
<div class="weather-number">27°C</div>
</div>
</section>
<!-- greetings section -->
<section class="greetings">
<p class="lead" id="greetingOfDay">Good Morning,</p>
<h1 class="h1" id="nameOfUser">Harshita Phadtare</h1>
</section>
<!-- weekly log section -->
<section class="week">
<div class="container">
<div class="cell sundayCell" >
<div class="day">S</div>
<div class="date" id="sunday">09</div>
<div class="circle"></div>
</div>
<div class="cell mondayCell">
<div class="day">M</div>
<div class="date" id="monday">10</div>
<div class="circle"></div>
</div>
<div class="cell tuesdayCell">
<div class="day">T</div>
<div class="date" id="tuesday">11</div>
<div class="circle"></div>
</div>
<div class="cell wednesdayCell">
<div class="day">W</div>
<div class="date" id="wednesday">12</div>
<div class="circle"></div>
</div>
<div class="cell thursdayCell">
<div class="day">T</div>
<div class="date" id="thursday">13</div>
<div class="circle"></div>
</div>
<div class="cell fridayCell">
<div class="day">F</div>
<div class="date" id="friday">14</div>
<div class="circle"></div>
</div>
<div class="cell saturdayCell">
<div class="day">S</div>
<div class="date" id="saturday">15</div>
<div class="circle"></div>
</div>
</div>
</section>
<!-- header for todo list for today -->
<section class="todayHeader">
<div class="today">Today Task
<span class="task-update">
(<span class="total-tasks-today">21</span> Tasks)
</span>
</div>
</section>
<!-- categories -->
<div class="categories-wrapper">
<div class="categories">
<!-- <div class="category">
<div class="left">
<img src="./assets/category/girl.png" alt="personal-image">
<div class="content">
<h1>Personal</h1>
<p>5 Tasks </p>
</div>
</div>
<div class="options">
<div class="toggle-btn">
<img src="./assets/option.png" alt="options button">
</div>
</div>
</div> -->
</div>
</div>
</div>
<!-- tasks screen -->
<div class="screen category-screen">
<div class="head-wrapper">
<div class="back-btn">
<img width="20" src="assets\back-arrow.png" alt="">
</div>
<div class="options">
<img width="20" src="./assets/option-white.png" alt="">
</div>
</div>
<div class="category-details">
<img src="assets/category/girl.png" alt="girl" id="category-img">
<div class="details">
<p class="category-tasks">8 tasks </p>
<h1 class="category-title">Personal</h1>
</div>
</div>
<div class="tasks-wrapper">
<div class="tasks">
<div class="task-wrapper">
<label for="task" class="task">
<input type="checkbox" name="" id="task">
<span class="checkmark">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M4.5 12.75l6 6 9-13.5"/>
</svg>
</span>
<p>Buy a new car</p>
</label>
<div class="delete">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
<!-- add task btn -->
<div class="add-task-btn">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 4.5v15m7.5-7.5h-15"/>
</svg>
</div>
<!-- backdrop -->
<div class="black-backdrop"></div>
<!-- add task form -->
<div class="add-task">
<div class="add-task-backdrop"></div>
<h1 class="heading">Add Task</h1>
<div class="input-group">
<label for="task-input">Task</label>
<input type="text" id="task-input" required>
</div>
<div class="input-group">
<label for="category-select">Category</label>
<select name="" id="category-select">
</select>
</div>
<div class="btns">
<button class="cancel-btn">Cancel</button>
<button class="add-btn">Add</button>
</div>
</div>
</div>
<!-- bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
<script type="module" src="./script.js"></script>
</html>