-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoListApp</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./assets/rocket.png">
<script src="app.js" type="module" defer></script>
</head>
<body>
<div class="top-part"></div>
<div class="bottom-part">
<main>
<div class="logo-app"></div>
<div class="search-wrapper">
<input type="text" placeholder="Add a new task" class="search-bar">
<button class="search-bar-button">Create <span class="add-button"></span> </button>
</div>
<section class="task-section">
<ul>
<li>Created tasks <span class="created-tasks">0</span></li>
<li>Completed <span class="completed-tasks">0</span></li>
</ul>
<div class="task-list">
<div class="no-task-list">
<div class="task-list-icon"></div>
<p class="task-list-not-message">You don't have tasks registered yet</p>
<p>Create tasks and organize your to-do items</p>
</div>
</div>
</section>
</main>
</div>
</body>
</html>