forked from ihardikkk/SIH-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
68 lines (56 loc) · 1.67 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles\main-page.css">
<link rel="stylesheet" href="styles\cart-styles\cart.css">
<title>Document</title>
</head>
<body>
<header>
<div class="header-div">
<div>
<a href="index.html">
<img class="philatelist-head-logo" src="logos/philatelist-head.svg">
</a>
</div>
<div class="my-account-style">
My Account
</div>
</div>
</header>
<div class="checkout-style">
<div>Checkout(2)</div>
</div>
<main>
<div class="order-summary">
</div>
<div class="payment-summary-div">
<div class="payment-summary-sub-div">
<div class="payment-summary">Payment Summary</div>
<div class="payment-calculation-div">
<div>Items (3):</div>
<div>₹30</div>
</div>
<div class="payment-calculation-div">
<div>Shipping & handling:</div>
<div>₹0</div>
</div>
<div class="payment-line-div">
<div class="calculation-line-div"><!--make div a short line under shipping cost value--></div>
</div>
<div class="payment-calculation-div">
<div class="grand-total">Grand total:</div>
<div class="grand-total">₹30</div>
</div>
<div class="checkout-button-div">
<div class="checkout-button">Proceed to Checkout
</div>
</div>
</div>
</div>
</main>
<script type="module" src="scripts/renderCart.js"></script>
</body>
</html>