-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkout.html
91 lines (88 loc) · 2.89 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
<!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" />
<script
src="https://kit.fontawesome.com/683b4b40e3.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&family=Source+Sans+3:wght@300;600&family=Source+Sans+Pro:wght@200;300&display=swap"
rel="stylesheet"
/>
<title>Checkout Page</title>
<link rel="stylesheet" href="checkout.css" />
</head>
<body>
<div id="head">
<h2>AMERICAN EAGLE</h2>
<div id="mail">
<div><i class="fas fa-envelope-open"></i></div>
<div>happytohelp@aeo.in</div>
</div>
</div>
<hr />
<div id="body">
<div id="left">
<div>
<p id="quantity"></p>
<hr>
<div id="cart"></div>
</div>
<div id="account">
2. ACCOUNT DETAILS
<div>Account : <span>xxxxxxxxx@gmail.com</span></div>
</div>
<div id="address">
3. SHIPPING DETAILS
<div>
<select class='select'>
<option value="">select</option>
<option value="">Home</option>
<option value="">Work</option>
<option value=""></option>
</select>
<input id="door" type="text" placeholder="D/NO" /><br />
<input id="street" type="text" placeholder="Street/Colony" /><br />
<input id="town" type="text" placeholder="Town/City" /><br />
<input id="dis" type="text" placeholder="District" /><br />
<input id="state" type="text" placeholder="State" /><br />
<input id="pin" type="number" placeholder="Pin-Code" /><br />
<input id="phone" type="number" placeholder="Phone Number" />
<input type="button" id="del" value="DELIVER HERE" />
</div>
</div>
<button id="pay">PROCEED TO PAYMENT</button>
</div>
<div id="right">
<div>
<h2>Order Summary</h2>
<div id="flex">
<p>Order Value</p>
<p id="price"></p>
</div>
<div id="flex">
<p id="ship">Shipping</p>
<p>FREE</p>
</div>
<div id="flex">
<p id="bold">ORDER TOTAL</p>
<p id="Tprice"></p>
</div>
<div id="flex">
<p>% check for offers</p>
<button id="bold">APPLY NOW</button>
</div>
<h4>
Safe and Secure Payments.<br />Easy returns.100% Authentic products
</h4>
</div>
</div>
</div>
</body>
</html>
<script src="checkout.js"></script>