-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (66 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Shopping To - Do List</title>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<form id="addItem">
<input type="text" placeholder="Enter your new item here." />
<input type="number" placeholder="Enter Quantity" />
<input type="button" value="ADD ITEM" />
</form>
<p>Shopping List to be done :</p>
<!-- To Do List Table -->
<table id="to-do-list">
<tr>
<th></th>
<th>Item Name</th>
<th>Quantity</th>
<th></th>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>Apple</td>
<td>2</td>
<td><span>X</span></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>Mango</td>
<td>3</td>
<td><span>X</span></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>Orange</td>
<td>5</td>
<td><span>X</span></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>Pine Apple</td>
<td>1</td>
<td><span>X</span></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>Grapes</td>
<td>1</td>
<td><span>X</span></td>
</tr>
</table>
<p>COMPLETED Shopping List :</p>
<!-- Table list of DONE -->
<table id="done-list">
<tr>
<th></th>
<th>Item Name</th>
<th>Quantity</th>
<th></th>
</tr>
</table>
<script src="script.js"></script>
</body>
</html>