-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (32 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
43 lines (32 loc) · 1.09 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1><i class="fa-solid fa-list-check"></i> Todo App</h1>
<form id="todoForm" class="one">
<input type="text" id="invalue" placeholder="Your todo here...">
<button type="submit">
<i class="fa-solid fa-plus"></i>
</button>
</form>
<div class="two">
<h3>
My Todos
<button class="danger" onclick="deleteAll()">
<i class="fa-solid fa-trash"></i> Delete All
</button>
</h3>
<div id="editArea"></div>
<ul id="todoList"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>