-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckout.html
123 lines (119 loc) · 4.62 KB
/
checkout.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<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>Sepphora/checkout</title>
<link rel="stylesheet" href="./styles/checkout.css">
</head>
<body>
<div id="navbag">
<div>
<a href="index.html"><img src="https://cdn07.nnnow.com/web-images/master/navtree_metaData/59b2657be4b0e6b6e16a9180/1548053082431/se.png" alt="Sepphora"></a>
</div>
<div class="dropmenu">
<div class="menubar"><p>User</p></div>
<div class="seconddrop">
<a href="account.html"><img src="https://i.ibb.co/Z2L3KCx/user.png" alt="login">My Account</a>
<a href="wishlist.html"><img src="https://i.ibb.co/Hqh4zqT/heart.png" alt="wishlist">Favourites</a>
<a href="orders.html"><img src="https://i.ibb.co/J3Mr8YY/bag.png" alt="cart">My Orders</a>
<hr>
<a href="index.html"><img src="https://ywcaspokane.org/wp-content/uploads/2016/05/YWCA_Escape_Button.png" alt="sign out">Sign Out</a>
</div>
</div></div>
<div id="navbag2">
<h2>CHECKOUT</h2>
<div>
<div>
<h3>1</h3>
<h4>Shipping</h4>
</div>
<div>
<h3>2</h3>
<h4>Payment</h4>
</div>
</div>
</div>
<div class="cartpopup2">
<h1>Add Address</h1>
<div class="close_button2">×</div>
<div>
<label for="">Name*</label>
<input type="text" id="addname" required>
<label for="">Addres*</label>
<input type="text" id="addhouse" required placeholder="(House/Flat No., Building, Street, Area/Locality)">
<div>
<div>
<label for="">Phone*</label>
<input type="number" id="addmobile" required>
</div>
<div>
<label for="">Alternate Number</label>
<input type="number" id="addaltermobile">
</div>
<div>
<label for="">Pincode*</label>
<input type="number" id="addpin" required>
</div>
<div>
<label for="">Landmark</label>
<input type="text" id="addlandmark">
</div>
</div>
</div>
<div id="addsave">Save</div>
</div>
<div id="navbag3">
<div id="leftnavbag3">
</div>
<div id="rightnavbag3">
<div id="firstrightarrrow">
<img src="https://static.nnnow.com/client/assets/images/promotions/icon_promo.png" alt="promo code">
<h3>APPLY PROMO CODE</h3>
</div>
<div id="secondrightarrow">
<h2>OVERVIEW</h2>
<div>
<div><p>Subtotal</p></div>
<div><p>Rs.</p><p id="bagsubtotal"></p></div>
<div><p>Discount</p></div>
<div><p>-Rs.</p><p id="bagdiscount"></p></div>
<div><p>GST</p></div>
<div><p>Rs.</p><p id="baggst"></p></div>
<div>Delivery Charges</div>
<div><p>Rs.</p><p id="bagdelivery"></p></div>
<div><h3>Total</h3></div>
<div><h3>Rs.</h3><h3 id="bagtotal"></h3></div>
</div>
</div>
<div id="thirdrightarrow">
<a href="#">CONTINUE</a>
</div>
</div>
</div>
<div class="cartpopup1">
<h1>Apply / Select promo code</h1>
<div class="close_button1">×</div>
<div>
<input type="text" id="promocodevalue" placeholder="Enter Promo">
<img id="submitpromo" src="https://static.nnnow.com/client/assets/images/promotions/go_back_btn.png" alt="arrow">
</div>
</div>
<div id="paynavbag4">
<div>
<img src="https://static.nnnow.com/Verified_by_Visa_logo.png" alt="visa">
<img src="https://static.nnnow.com/verified-mastercard.png" alt="mastercard">
<img src="https://static.nnnow.com/verified-pci.png" alt="pci">
<img src="https://static.nnnow.com/AMEX-safekey.png" alt="Safe key">
</div>
<div>
<p>© 2022 NNNOW</p>
<p>|</p>
<a href="#">Privacy Policy</a>
<p>|</p>
<a href="#">Terms & Conditions</a>
</div>
</div>
</body>
</html>
<script src="./scripts/checkout.js"></script>