-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.03 KB
/
index.html
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
<!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><br>
<p>Keep it up !</p><br>
<div id="progressBar">
<div id="progress"></div>
</div>
</div>
<div class="stats-numbers">
<p id="number">0/0</p>
</div>
</div>
<form action="">
<input type="text" id="taskInput" placeholder="Write your task...!!!!">
<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>