-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoppingcart.html
82 lines (77 loc) · 3.02 KB
/
shoppingcart.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
75
76
77
78
79
80
81
82
<!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>Shopping Cart</title>
<script src="https://kit.fontawesome.com/97221ad7fc.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./Styles/shoppingcart.css">
</head>
<body>
<!-- TOP PART I.E. LOGO AND 3 DOTS STARTS FROM HERE -->
<div id="top">
<div id="top1">
<a href="index.html"><img src="https://www.shareasale.com/images/logo2016_1.jpg" alt=""></a>
<img src="./Images/1.PNG" alt="">
</div>
<hr>
</div>
<!-- TOP PART I.E. LOGO AND 3 DOTS ENDS HERE -->
<!-- MID PART I.E. PRODUCT NAME & DETAILS AND GRAY BAR CART ITEMS CHECKOUT RED BAR STARTS FROM HERE -->
<div id="mid">
<div id="mid1">
<h4>Product Name & Detail</h4>
<p>Ship to<span> </span><img src="./Images/Flag_of_India.svg.webp" alt=""><span> </span><span>/INR</span><span> </span><i class="fa-solid fa-angle-down"></i></p>
</div>
<div id="mid2">
<p>Product Name & Detail</p>
<p>Unit Price</p>
<p>Quantity</p>
<p>Total</p>
<p>Operation</p>
</div>
<div id="mid3">
<!-- APPEND CART ITEMS HERE -->
</div>
<div id="mid4">
<div>
<p>Continue Shopping <i class="fa-solid fa-angle-right"></i></p>
</div>
<div>
<p>You choose <span id="total-items">0</span> item(s)</p>
<p>Total: <span id="currency">₹</span ><span id="total-price">0.00</span></p>
<button><img src="https://content1.geekbuying.com/V1.4/en/images/cartImg/new_pp.png" alt=""> </button>
<button onclick = "ptoc()">Proceed to checkout</button>
</div>
</div>
</div>
<!-- MID PART I.E. PRODUCT NAME & DETAILS AND GRAY BAR CART ITEMS CHECKOUT RED BAR ENDS HERE -->
<div id="bottom">
<div id="bottom1">
<p>More Relevant Items to Consider</p>
</div>
<hr>
<div id="bottom2">
<div id="">
<div id="midSlid">
<Div id="backward">
<div class="circle" onclick="backward()"><i class="fa-solid fa-chevron-left"></i></i></div>
</Div>
<div id="midRigDiv" class="productDetailMainBox"></div>
<Div id="forward">
<div class="circle" onclick="forward()"><i class="fa-solid fa-chevron-right"></i></i></div>
</Div>
</div>
</div>
</div>
<div id="bottom3">
<img src="./Images/companies footer.PNG" alt="">
</div>
<div id="bottom4">
<p>© 2012-2022 Geekbuying.com. All rights reserved.</p>
</div>
</div>
</body>
</html>
<script src="./Scripts/shoppingcart.js"></script>