-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.21 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Interactive Checklist Counter</title>
</head>
<link rel="stylesheet" href="style/main.css" />
<body>
<main>
<h1>Task Manager</h1>
<!-- === INPUT TASK === -->
<form id="task-input-form">
<input type="text" placeholder="Add New Task Here" />
<button type="submit" id="add-task">Add Task</button>
<button type="reset" id="clean-input">Clean</button>
<p class="msg">aa</p>
</form>
<!-- === PROGRESS INDIKATOR ==== -->
<div id="progress-ctn">
<div id="indicator">
<span id="total-task">--</span>
<span id="progress-counter">Completed Task : -/-</span>
</div>
<div id="progress-bar">
<span id="bar"></span><span id="val">100%</span>
</div>
<p id="progress-msg">Let's start your first task.</p>
</div>
<!-- === TASK SECTION ==== -->
<ul id="task-ctn">
<!-- Task item(li)... -->
</ul>
</main>
<script type="module" src="main.js"></script>
</body>
</html>