forked from jonfriskics/JS-KanbanBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 964 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
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<title>PS Kanban Board Project</title>
</head>
<body>
<header class="flex">
<h1>
PS Kanban Board
</h1>
</header>
<div class="error"></div>
<div class="flex flex-one board">
<div class="list drop" id="requested">
<div class="heading">
<div class="title">Requested</div>
<div class="add">+</div>
</div>
</div>
<div class="list drop" id="in-progress">
<div class="heading">
<div class="title">In Progress</div>
</div>
</div>
<div class="list drop" id="done">
<div class="heading">
<div class="title">Done</div>
</div>
</div>
</div>
<footer class="flex">
<span>
©2019 Pluralsight
</span>
</footer>
<script src="js/kanban.js"></script>
</body>
</html>