-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 1.62 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To-Do List</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<link rel="icon" type="image/x-icon" href="images/logo/logo.png" />
<script
src="https://kit.fontawesome.com/cb104e752f.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container">
<div class="todo-app">
<div class="title-section">
<h1>To-Do List</h1>
<img src="images/logo/logo.png" alt="Todo Logo" id="logo-img" />
</div>
<div class="inputs-section">
<input type="text" id="input-add-task" placeholder="Add Your Task" />
<button class="btn-todo">Add</button>
<i class="fas fa-search" id="search-icon"></i>
</div>
<div class="error-message-sec">
<p class="error-message"></p>
</div>
<div class="task-sec">
<ul class="task-list"></ul>
<p id="task-message" style="display: none"></p>
</div>
</div>
</div>
<div id="search-modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Search Tasks</h2>
<input type="text" id="search-input" placeholder="Search..." />
<button id="search-btn">Search</button>
<ul id="search-results"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>