-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 962 Bytes
/
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" />
<title>Task Manager</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="card">
<header>
<h2>Task Manager</h2>
</header>
<main>
<input type="text" id="taskInput" placeholder="New task" />
<button id="addTask" onclick="handleAdded()">Add Task</button>
<div class="tasks"></div>
</main>
</div>
<footer>
<h6>© 2024 Copyright by Hazem Twair</h6>
</footer>
<div id="taskTemplate" class="task none">
<span></span>
<div class="actions">
<button class="complete" onclick="handleCompleted(this)">
Complete
</button>
<button class="remove" onclick="handleRemoved(this)">Remove</button>
</div>
</div>
<script src="/script.js"></script>
<!-- <script src="/using-createElement.js"></script> -->
</body>
</html>