-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (51 loc) · 1.41 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crewmate Kanban UI</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h4>Tasks (kanbanview)</h4>
</header>
<section>
<div id="board">
<div class="task-box">
<h4>Backlog</h4>
<div class="task-box-content">
<section class="task backLog" draggable="true">
<li>Create Flash banners</li>
</section>
</div>
</div>
<div class="task-box">
<h4>To Do</h4>
<div class="task-box-content">
<section class="task todo" draggable="true">
<li>Create Flash banners</li>
</section>
</div>
</div>
<div class="task-box">
<h4>Doing</h4>
<div class="task-box-content">
<section class="task doing" draggable="true">
<li>Collect collateral for online marketing design</li>
</section>
</div>
</div>
<div class="task-box">
<h4>Done</h4>
<div class="task-box-content">
<section class="task done" draggable="true">
<li>Collect collateral for online marketing design</li>
</section>
</div>
</div>
</div>
</section>
<nav id="navbar"></nav>
<script src="js/drag.js"></script>
</body>