forked from enniewealth209-crypto/Task-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.html
More file actions
51 lines (40 loc) · 1.13 KB
/
Copy pathtask.html
File metadata and controls
51 lines (40 loc) · 1.13 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="task.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="header-title">
<a href="#">
<i class="bx bx-menu"></i>
</a>
<h2>My Tasks</h2>
<div class="icons">
<a href="#">
<i class="bx bx-search"></i>
</a>
<a href="#">
<i class="bx bx-user-circle"></i>
</a>
</div>
</div>
<div class="navbar">
<a href="#">All</a>
<a href="#">Pending</a>
<a href="#">In Progress</a>
<a href="#">Completed</a>
</div>
<div class="container">
<img src="asset/no task.png" alt="No task yet">
<h2>No task yet</h2>
<p>Stay organized and productive by creating your first task.</p>
<a href="#">
<i class="bx bx-plus" id="add-btn"> </i>
</a>
</div>
</body>
</html>