-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (22 loc) · 911 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class=" space-y-5 text-center pt-60" >
<h1 class="text-4xl font-bold">TODO LIST</h1>
<input type="text" name="" id="name" placeholder="enter your List" class="text-lg ring-2 ring-offset-purple-300"><br>
<button class="btn" type="button" id="add" onclick="addItem()">Add TODO</button>
<button class="btn-2" type="button" id="remove" onclick="removeItem()">Remove TODO</button>
<ul id="list">
</ul>
<p>created by ♥ Yash © 2021</p>
</div>
<script src="script.js"></script>
</body>
</html>