-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 756 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 756 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
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<title>Shopping List</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
</head>
<body>
<!-- table -->
<div class="container">
<h1 class="head">Things to buy</h1>
<table class="table" id="grotable">
<thead>
<tr>
<th scope="col">S.No.</th>
<th scope="col">Item Name</th>
<th scope="col">Quantity</th>
<th scope="col">Unit</th>
<th scope="col">Department</th>
<th scope="col">Notes</th>
<th>Status</th>
</tr>
</thead>
<tbody id="tBody"></tbody>
</table>
</div>
</body>
</html>
</body>
</html>