-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcart.html
42 lines (38 loc) · 1.35 KB
/
cart.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
<!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">
<link rel="icon" href="./feviIcon/android-chrome-512x512.png" />
<title>Cart</title>
<link rel="stylesheet" href="./css/cart.css">
</head>
<body>
<div class="nav">
<a href="index.html"><img id="logo" src="./img/project logo1.jpg" style="width: 150px" alt="" /></a>
</div>
<hr>
<div class="main">
<p id="empty"></p>
<div id="product-list">
<div class="product-list-head">
<p>Cart</p>
<p>|</p>
<p><span id="item-count">0</span> item</p>
</div>
<div class="product-list-items">
</div>
</div>
<div id="product-details">
<p class="product-details-head">Product details</p>
<div><p>Total Product Price : </p><span id="product-total">₹0</span> </div>
<hr>
<div><p>Order Total :</p><span id="oder-total">₹0</span> </div>
<div id="click"><p>Clicking on ‘Continue’ will not deduct any money</p></div>
<button id="continue">Continue</button>
</div>
</div>
</body>
<script src="./scripts/cart.js"></script>
</html>