-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.03 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>Task Mate</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<header>
<h1 class="page-title">Task Mate</h1>
<!-- form for entering new task -->
<form id="task-form">
<!-- input new task -->
<div class="form-group">
<input
type="text"
name="task-name"
placeholder="Enter a new task"
class="text-input"
/>
</div>
<!-- select task type -->
<div class="form-group">
<select name="task-type" class="select-dropdown">
<option value=" " disabled selected>Pick a task type</option>
<option value="Sketch">Sketch</option>
<option value="Web">Web</option>
<option value="Mobile">Mobile</option>
</select>
</div>
<!-- submit task -->
<div class="form-group">
<button class="btn" id="save-task">Add Task</button>
</div>
</form>
</header>
<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>
© 2023 by
<a href="https://github.com/DiSantoz" target=" _blank">DiSantoz</a>
</footer>
<script src="./assets/js/script.js"></script>
</body>
</html>