-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.85 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
<!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>Taskinator</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<h1 class="page-title">Taskinator</h1>
<p>Click the button below to add a new task!</p>
<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>
<main class="page-content" id="page-content">
<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>