-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
56 lines (55 loc) · 2.14 KB
/
payment.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Payment</title>
<link rel="icon" type="image/png" href="images/shopclues icon.png">
<link rel="stylesheet" href="styles/payment.css">
</head>
<body>
<div class="header">
<div>
<img class="arrow" src="images/back_112351.png" alt="">
<img class="headerImg" src="https://images.shopclues.com/images/ui/shopclues_logo@2x.png" alt="">
</div>
<div class="cartProgress">
<img class="one-before-img" src="images/one-after.png" alt="">
<span class="address">Enter Address</span>
<img class="two-disabled-img" src="images/two-active.png" alt="">
<span class="payment">Payment</span>
</div>
</div>
<div class="container">
<div class="paymentSelectionDiv">
<h3>Select Payment Mode</h3>
<div id="debit">
<p>Debit Card</p>
</div>
<div id="credit">
<p>Credit Card</p>
</div>
<div id="cod">
<p>Cash On Delivery</p>
</div>
</div>
<div id="paymentMethodDiv">
</div>
<div class="offersDiv">
<h3>Bank/Wallet Offers</h3>
<div class="offers">
<div>
<img class="mobiqwikImg" src="https://images.shopclues.com/images/ui/wallet_logo/post_promotion/mobikwik.png" alt="">
<p>Rs.114 Supercash* on placing order via Mobikwik, T&C Apply</p>
</div>
<div>
<img class="airtelImg" src="https://images.shopclues.com/images/ui/wallet_logo/post_promotion/airtel.png" alt="">
<p>Rs.76 Cashback* on your first order with Airtel Payments Bank, T&C Apply</p>
</div>
<div>
<img class="dhaniImg" src="https://images.shopclues.com/images/ui/dhani_ico.png" alt="">
<p>10% off on Dhani OneFreedom Card, Min transaction value is ₹50, Max Discount ₹100</p>
</div>
</div>
</div>
</div>
</body>
<script src="scripts/payments.js"></script>