forked from sahtejkumar/dreary-hand-8237
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
95 lines (92 loc) · 3.72 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
<!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>Document</title>
<link rel="stylesheet" href="checkout.css">
</head>
<body>
<div class="header">
<img src="https://cdn.shopify.com/s/files/1/0054/6665/2718/files/Checkout_Banner.png?v=16517100635" alt="poster">
</div>
<div class="main">
<div class="cart">
<p class="cls">Cart > Information > Shipping > Payment</p>
<div class="contact-info">
<h2>Contact Information</h2>
<p>Already have an account? Log in</p>
</div>
<input type="email" placeholder="Email" class="input">
<input type="checkbox" id="check1">
<label for="check1" id="line1">Email me with News and Offers</label>
<div class="shipping-info">
<h2>Shipping Address</h2>
<input type="text" placeholder="Enter Country" class="input">
<div class="name-input">
<input type="text" placeholder="First Name">
<input type="text" placeholder="Second Name">
</div>
<input type="text" placeholder="Address" class="input">
<input type="text" placeholder="Apartment, suite, etc. (optional)" class="input">
<div class="state">
<input type="text" placeholder="City" class="input">
<input type="text" placeholder="State" class="input">
<input type="text" placeholder="PIN Code" class="input">
</div>
<input type="text" placeholder="Phone" class="input">
<input type="checkbox" id="check2">
<label for="check2" id="line2">Save this information for next time</label>
<div class="flex">
<p> < Return to cart</p>
<button id="btn">Continue to Payment</button>
</div>
<hr class="hr">
<div class="footer">
<p>Refund Policy</p>
<p>Shopping Policy</p>
<p>Privacy Policy</p>
<p>Terms of Service</p>
</div>
</div>
</div>
<div class="coupon">
<div class="flex">
<div class="item">
<img src="https://www.bigbasket.com/media/uploads/p/xxl/40208842_1-bella-vita-organic-ubtanplus-face-pack.jpg">
<p id="title">C-Glow Face Pack, 100gm</p>
</div>
<div class="item">
<p id="price">Rs 698</p>
</div>
</div>
<hr>
<div class="discount">
<input type="text" placeholder="Gift Card or Discount Code" id="imp">
<button id="apply">Apply</button>
</div>
<hr>
<div class="subtotal">
<p class="myfont">Subtotal</p>
<p id="sub">Rs 698</p>
</div>
<div class="shipping">
<p class="myfont">Shipping</p>
<p class="small">Calculated at next step</p>
</div>
<hr>
<div class="total-div">
<div class="para">
<p>Total</p>
<p class="small">Including 106.47 in taxes</p>
</div>
<div class="div">
<span class="small">INR</span>
<p id="total">Rs 698</p>
</div>
</div>
</div>
</div>
</body>
</html>