-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.4 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>ToDoList</title>
</head>
<body>
<div class="todo-wrapper">
<h2>To Do List App</h2>
<p>"Get things done, one step at a time."</p>
<p>Cheer Up!! </p>
<div id="task-count">0 / 0</div>
<form name="todo-adder">
<input type="text" id="todo-entry-box" placeholder="Write your list" />
<button id="add-button" class="pretty-button">Add</button>
</form>
<br />
<ul id="todo-list">
</ul>
<div id="control-wrapper">
<button id="clear-completed-button" onclick="clearCompletedToDoItems()" class="pretty-button">Clear Completed</button>
<button id="empty-button" onclick="emptyList()" class="pretty-button">Empty List</button>
</div>
</div>
<footer class="footer">
<p>© 2024 Salvia Maylie Budiawati. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
</body>
</html>