-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
57 lines (56 loc) · 1.72 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script defer type="module" src="main.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
<h2>TASK MANAGER</h2>
<div id="seprate">
<button type="button">DARK MODE</button>
</div>
</header>
<div id="search">
<input type="search" name="searchTask" id="searchTask" placeholder="searchTask">
</div>
<!--task form-->
<section id="formSection">
<form >
<div class="formPos">
<label for="task">Task</label>
<input type="text" name="task" id="taskText">
</div>
<div class="formPos">
<label for="text">Task Description</label>
<textarea name="taskDescription" id="taskDescription"></textarea>
</div>
<div id="formCate">
<label for="category">Category</label>
<select name="category" id="category" aria-placeholder="category">
<option value=""></option>
<option value="work">WORK</option>
<option value="fun">FUN</option>
<option value="family">family</option>
</select>
</div>
<div id="submitDiv">
<button type="button" id="submit">Add Task</button>
</div>
</form>
</section>
<section id="stats"></section>
<!--task container-->
<section>
<ul id="taskContainer">
</ul>
</section>
<section>
<ul id="completedSection">
</ul>
</section>
</body>
</html>