-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (58 loc) · 2.42 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
<!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/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" />
<!-- Icons -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<!-- Favicon/Title -->
<title>Todo List</title>
</head>
<body>
<!-- Author -->
<div class="author-text">
<p id="myName" class="vivek">Made by Vivek Singh</p>
<a href="https://www.linkedin.com/in/uivivek/"style="color:#0077b5"><i class='bx bxl-linkedin-square bx-sm'></i></a>
<span> || </span>
<p>Visitor count : <span id="count"></span></p>
</div>
<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-secondary w-full max-w-xs" />
<button class="btn btn-secondary add-task-button">
<i class="bx bx-plus bx-sm"></i>
</button>
</div>
</header>
<div class="todos-filter">
<button class="btn btn-secondary delete-all-btn">
Delete All
</button>
</div>
<ul class="todos-list">
</ul>
</div>
<!--Theme-->
<div class="theme-switcher">
<div class="dropdown dropdown-left">
<label id="mode" tabindex="0" class="btn m-1">
<i id="icon" class='bx bxs-moon bx-sm'></i>
</label>
</div>
</div>
<!-- JS-Files -->
<script src="main.js"></script>
<script src="theme.js"></script>
</body>
</html>