-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (53 loc) · 1.85 KB
/
index.html
File metadata and controls
65 lines (53 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<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">
<meta name="author" content="Mainul Hasan Khan">
<title>Task Management</title>
<link rel="icon" type="image/jpg" href="./img/cat.jpg">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<section class="container">
<div class="logo">
<img src="./img/cat.jpg" alt="img/jpg">
</div>
<h1 id="header" class="header">To-Do App</h1>
<form class="new-task-container box">
<label for="new-task">Add New Task</label>
<input type="text" id="new-task">
<input type="submit" id="addTask" value="Add Task">
</form>
<div class="todo-list box">
<h2>Incomplete Tasks</h2>
<ul class="items">
<li class="item">
<input type="checkbox"><label>Demo Task</label>
</li>
</ul>
</div>
<!-- /todo-list -->
<div class="complete-list box">
<h2>Complete Tasks</h2>
<ul>
<li class="item">Task Name<button class="delete">Delete</button></li>
</ul>
</div>
<!-- /complete list -->
</section>
<!-- /container -->
<div id="copyright_area">
<div class="inner_copyright container">
<div class="left_copyright">
<p>Copyright © 2022 - Mainul Hasan Khan | All Rights Reserved</p>
</div>
<div class="right_copyright">
<p>Whatsapp: +88 01707-101100</p>
</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>