-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.03 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo App</title>
<link rel="stylesheet" href="./style.css"/>
</head>
<body>
<div class="container">
<div class="stats-container">
<div class="details">
<h1>Todo App </h1>
<p>Keep it up !</p>
<div id="progress-bar">
<div id="progress"></div>
</div>
</div>
<div class="stats-numbers"></div>
<div id="numbers">0/0</div>
</div>
<form action="">
<input type="text" id="taskInput" placeholder="Write here..."/>
<button id="newTask" type="submit">+</button>
</form>
<ul id="task-list">
</ul>
</div>
<script src="./app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
</body>
</html>