-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (54 loc) · 1.75 KB
/
index.html
File metadata and controls
56 lines (54 loc) · 1.75 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
<!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" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=filter_alt"
/>
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/components.css" />
<title>Task List</title>
</head>
<body>
<header class="container bg-primary padding-xl">
<h1>Task List</h1>
</header>
<main class="container">
<section>
<form id="form" class="flex margin-bottom-l">
<input
type="text"
class="fs-20"
id="new-task"
placeholder="New Task"
/>
<input type="submit" class="fs-20 capitalize" value="add task" />
</form>
<div class="flex margin-bottom-l">
<div class="input-group relative flex-grow">
<input
type="text"
id="task-filter"
placeholder="Filter Task"
class="fs-20"
/>
<span class="material-symbols-outlined absolute">filter_alt</span>
</div>
<button id="clear-task" class="fs-20 btn capitalize border-radius-xs">
Clear Task
</button>
</div>
</section>
<section>
<h1 class="title bg-primary-container border-radius-s">Task</h1>
<ul id="tasks-list"></ul>
<ol id="tasks-list" class="text-start"></ol>
</section>
</main>
<script src="script.js"></script>
</body>
</html>