-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 979 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 979 Bytes
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
<!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 rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css" integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<h1>Todo App</h1>
<!-- <div id="parent">
<h1 id="child1"></h1>
<h1 id="child2"></h1>
<h1 id="child3"></h1>
<h1 id="child4"></h1>
</div> -->
<div>
<input type="text" placeholder="Enter Your Todo" id="todo_input">
<button id="add_todo_btn">Add Todo</button>
<button id="delete_all_todo_btn">Delete All</button>
</div>
<ul id="todo_list">
</ul>
<script src="app.js"></script>
</body>
</html>