-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (49 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Kanban Board</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="container">
<div class="heading">
Digital Kanban Board
</div>
<!-- <div id="new">
<input type="text" placeholder="write your new item here"></input>
<button>
Add
</button>
</div> -->
<div class="description">
<p>Welcome to your own digital kanban board.</p>
<p>Start by entering your task or to do item in a bubble under "To Do". Once you've begun a task, drag and drop it into the "Doing" section. When you've completed the task, drag it into the "Done" section. Yay productivity!!!</p>
</div>
<div id="board" class="flex-container">
<div class="block" id="toDo">
<h3>
To Do
</h3>
<input type="text" class="task" id="task1" draggable="true" autocomplete="off"></input >
<input type="text" class="task" id="task2" draggable="true" autocomplete="off"></input >
<input type="text" class="task" id="task3" draggable="true" autocomplete="off"></input >
<input type="text" class="task" id="task4" draggable="true" autocomplete="off"></input >
</div>
<div class="block" id="doing">
<h3>
Doing
</h3>
</div>
<div class="block" id="done">
<h3>
Done
</h3>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>