forked from aaryan359/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (25 loc) · 918 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TODO</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="todo-app">
<h2> To-Do List <img
src="https://imgs.search.brave.com/QpbM_bRtQQrpiI8GVH1UsaM5pe8-mZFr9kTk3zEMtbc/rs:fit:500:0:0/g:ce/aHR0cHM6Ly9jZG4u/aWNvbi1pY29ucy5j/b20vaWNvbnMyLzcv/UE5HLzk2L2xpc3Rf/OTkyLnBuZw">
</h2>
<div class="row">
<input type="text" name="" id="input-box" placeholder="add your task">
<button onclick='AddTask()'>Add</button>
</div>
<ul id="list-container">
</ul>
</div>
</div>
</body>
<script src="script.js"></script>
</html>