-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (59 loc) · 2.09 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
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>Taskinator</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css"/>
</head>
<body>
<header>
<!-- main header -->
<h1 class="page-title">Taskinator</h1>
<p>Click the button below to add a new task!</p>
<!-- form to add task -->
<form id="task-form">
<div class="form-group">
<input type="text" name="task-name" placeholder="Enter task name"/>
</div>
<div class="form-group">
<select name="task-type" class="select-dropdown">
<option value="" disabled selected>Pick a task type</option>
<option value="Print">Print</option>
<option value="Web">Web</option>
<option value="Mobile">Mobile</option>
</select>
</div>
<div class="form-group">
<button class="btn" id="save-task" type="submit">Add task</button>
</div>
</form>
</header>
<!-- task tracker -->
<main class="page-content" id="page-content">
<!-- tasks to do -->
<section class="task-list-wrapper">
<h2 class="list-title">Tasks To Do</h2>
<ul class="task-list" id="tasks-to-do">
</ul>
</section>
<!-- tasks in progress -->
<section class="task-list-wrapper">
<h2 class="list-title">Tasks In Progress</h2>
<ul class="task-list" id="tasks-in-progress">
</ul>
</section>
<!-- tasks completed -->
<section class="task-list-wrapper">
<h2 class="list-title">Tasks Completed</h2>
<ul class="task-list" id="tasks-completed">
</ul>
</section>
</main>
<footer>
©2020 by Taskinator
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>