-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1 KB
/
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
36
<!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>To Do App</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="header"><h1>TODO</h1></div>
<form class="menu" id='addItemsForm'">
<input type="text" class="item">
</form>
</div>
<div class="listcontainer">
<div class="item-row">
<div class="serialNo-header">S No</div>
<div class='item-name-header'>Item Name</div>
</div>
</div>
<div class="PopUp">
<div class="window">
<h6>Choose Your Action</h6>
<button class="Complete">Make as Complete</button>
<button class="remove">Remove</button>
<button class="cancle">Cancle</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>