-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.05 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do List</title>
<script src="https://kit.fontawesome.com/6f2f11d521.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app">
<div class="task-container">
<div>
<h1>TO DO LIST</h1>
<div class="task-form">
<input type="text" id="task_input" placeholder="Add New Task"/>
<button onclick=addTask()>Add</button>
</div>
<div class="--flex-center ">
<p id="tasks-count">0 Total, 0 Completed, 0 Pending</p>
</div>
<hr/>
<p class="--flex-center placeholder-message">No tasks added, please add a task</p>
<div id="tasks"></div>
</div>
</div>
</div>
</body>
</html>
<script src="./index.js"></script>