-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 968 Bytes
/
Copy pathindex.html
File metadata and controls
42 lines (37 loc) · 968 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
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Task Tracker Board</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h2>Board</h2>
</header>
<main class="board">
<div class="column">
<div class="column-header">
<h3>To do</h3>
<button class="add" onclick="addTask('todo')">+</button>
</div>
<div class="task-container" id="todo"></div>
</div>
<div class="column">
<div class="column-header">
<h3>In progress</h3>
<button class="add" onclick="addTask('progress')">+</button>
</div>
<div class="task-container" id="progress"></div>
</div>
<div class="column">
<div class="column-header">
<h3>Done</h3>
<button class="add" onclick="addTask('done')">+</button>
</div>
<div class="task-container" id="done"></div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>