-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grocery Shopping List</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h2>Grocery Shopping List</h2>
<table id="shoppingList">
<tr>
<th>Product Name</th>
<th>Quantity</th>
<th>Price Per Unit</th>
<th>Total Price</th>
</tr>
</table>
<button onclick="addProduct()" class="adddwn">Add Product</button>
<p id="totalAmount">Total Amount: $0.00</p>
<button onclick="downloadList()" class="adddwn">Download List</button>
<div>
<footer><p style="color:#000;">🥰Powered by <a style="color:blue;"href="https://github.com/Akshayadeveloper"target="_blank">
💗Akshaya developer 💟</a></p>
</footer></div>
<script src="./script.js"></script>
</body>
</html>