-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.28 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.28 KB
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
<!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>Document</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>Simple Task Board</header>
<main>
<form class="input_task" id="add_task">
<input type ="text" id="title" type="text" placeholder="Title" /><br />
<textarea type ="text" id="description" rows="5" cols="40" placeholder="Description"></textarea><br />
<button type = submit class="todo__add">Create</button>
</form>
<div class="board">
<ul class="todo">
<h2 class="block">To Do</h2>
<div id="to_do_list"></div>
</ul>
<button id="move_task_progress" disabled> > </button>
<ul class="inprogress">
<h2 class="block">
<p>In progress</p>
</h2>
<div id="in_progress_list">
</ul>
<button id="move_task_done" disabled>></button>
<ul class="done">
<h2 class="block">
<p>Done</p>
</h2>
<div id="done_list">
</ul>
</div>
</main>
</body>
</html>