-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (43 loc) · 1.57 KB
/
index.html
File metadata and controls
51 lines (43 loc) · 1.57 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
<!DOCTYPE html>
<!--<html lang="en" data-theme="bumblebee">-->
<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="stylesheet.css">
<link href="https://cdn.jsdelivr.net/npm/daisyui@2.18.0/dist/full.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<title>Todo List</title>
<style>
.delete-all-btn, .add-task-button{
background: #89CFF0 ;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Todo List</h1>
<div class="alert-message"></div>
<div class="input-section">
<input type="text" placeholder="Add a todo . . ." class="input input-bordered w-full max-w-xs" />
<input type="date" class="input input-bordered w-full max-w-xs schedule-date" />
<button class="btn btn-info add-task-button">
<i class="bx bx-plus bx-sm"></i>
</button>
</div>
</header>
<div class="todos-filter">
<button class="btn btn-info delete-all-btn">
Delete All
</button>
</div>
<table class="table w-full">
<tbody class="todos-list-body">
</tbody>
</table>
</div>
<script src="main.js"></script>
</body>
</html>