-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.53 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
<!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">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!--- Tailwind CSS & Daisy UI CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- Favicon -->
<link rel="icon" href="check.png">
<title>Todo List</title>
</head>
<body>
<div class="container">
<header>
<h1>Todo List</h1>
<!-- Error message -->
<div class="alert-message">
</div>
<div class="input-section">
<input type="text" placeholder="Add a todo . . ." class="input input-bordered input-info w-full max-w-xs" />
<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>
<ul class="todos-list">
</ul>
</div>
<!-- JS -->
<script src="main.js"></script>
</body>
</html>