-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (40 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
57 lines (40 loc) · 1.16 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
57
<!-- index.html -->
<!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">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.9.0/fonts/remixicon.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<div class="stats-container">
<div class="details">
<h1>My Tasks 📝</h1>
<h5>Keep it up 👍</h5>
<p>No tasks yet</p>
</div>
<div id="numbers">
<span>0%</span>
</div>
</div>
<div class="inputKeNicheBorder">
<form id="taskForm">
<input
autofocus
type="text"
id="taskInput"
placeholder="Write your task..."
>
<button type="submit" id="newTask">+</button>
</form>
</div>
<div class="stickyHoja"></div>
<ul class="task-list"></ul>
</div>
<script src="https://cdn.jsdelivr.net/npm/@hiseb/confetti@2.1.0/dist/confetti.min.js"></script>
<script src="app.js"></script>
</body>
</html>