-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 980 Bytes
/
index.html
File metadata and controls
37 lines (34 loc) · 980 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kanban Board</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- main container -->
<div class="container">
<h1>SIMPLE KANBAN BOARD</h1>
<!-- board with 3 lists -->
<div class="board">
<!-- to do list -->
<div class="list" id="list1">
<h2>To Do</h2>
<div class="card" draggable="true" id="card1">Take a Walk</div>
<div class="card" draggable="true" id="card2">Learn JavaScript</div>
</div>
<!-- in progress list -->
<div class="list" id="list2">
<h2>In Progress</h2>
<div class="card" draggable="true" id="card3">Watch Demon Hunters</div>
</div>
<!-- done list -->
<div class="list" id="list3">
<h2>Done</h2>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>