-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskflow.html
More file actions
35 lines (31 loc) · 1018 Bytes
/
taskflow.html
File metadata and controls
35 lines (31 loc) · 1018 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>TaskFlow - Kanban Board</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>🗂️ TaskFlow</h1>
<div class="board">
<div class="column" ondrop="drop(event)" ondragover="allowDrop(event)">
<h2>To Do</h2>
<div id="todo" class="task-list"></div>
</div>
<div class="column" ondrop="drop(event)" ondragover="allowDrop(event)">
<h2>In Progress</h2>
<div id="inprogress" class="task-list"></div>
</div>
<div class="column" ondrop="drop(event)" ondragover="allowDrop(event)">
<h2>Done</h2>
<div id="done" class="task-list"></div>
</div>
</div>
<div class="add-task">
<input type="text" id="newTask" placeholder="New task..." />
<button onclick="addTask()">➕ Add Task</button>
</div>
<script src="script.js"></script>
</body>
</html>