-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCheckout.html
More file actions
136 lines (113 loc) · 3.76 KB
/
Checkout.html
File metadata and controls
136 lines (113 loc) · 3.76 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exclusive - Checkout</title>
<link rel="stylesheet" href="check-out.css" />
<link rel="stylesheet" href="style_hed_fot.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
/>
</head>
<body>
<header>
<nav class="nav_bar">
<div class="title">
<p>Exclusive</p>
</div>
<div class="links">
<ul class="list">
<li>
<a href="index.html"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li>
<a href="favorite.html"
><i class="fa-regular fa-heart"></i> Favorite</a
>
</li>
<li>
<a href="cart.html"
><i class="fa-solid fa-cart-shopping"></i> Cart</a
>
</li>
</ul>
</div>
</nav>
</header>
<!-- main section -->
<main class="checkout-main">
<h2>Check out your order</h2>
<!-- Order Summary -->
<div class="order-summary">
<ul id="order-list">
</ul>
<div class="summary-details">
<p>Subtotal: <span id="subtotal">$0</span></p>
<p>Shipping: <span id = "shiping">0$</span></p>
<p class="total">Total: <span id="total">$0</span></p>
</div>
<div class="payment">
<label
><input type="radio" name="payment" value="cod" checked /> Cash on
delivery</label
>
</div>
<!-- Coupon -->
<div class="coupon">
<input type="text" id="coupon-code" placeholder="Coupon Code" />
<button id="apply-coupon">Apply Coupon</button>
</div>
<div class="coupon">
<!-- Place Order -->
</div>
<div class="client_info">
<input type="text" id="name" placeholder="Enter your full name" required>
<input
type="text"
id="address"
placeholder="Enter your address like(city street building_number) "
required
/>
<input
type="number"
id="phone"
placeholder="Enter your phone number"
required
/>
</div>
</div>
<div class="place-order">
<button id="place-order">Place Order</button>
</div>
</main>
<footer>
<div class="col1" id="demo">
<h3><b>About Exclusive</b></h3>
<p>
welcome to <strong>My Store</strong> – your one-stop destination for
quality products at affordable prices. We are passionate about
delivering the best shopping experience, whether you’re looking for
electronics, fashion, or home essentials. Our mission is to combine
convenience, trust, and innovation to make online shopping simple and
enjoyable.
</p>
</div>
<div class="col2">
<h3>Support</h3>
<p>exclusive@gmail.com</p>
<p>01094545216</p>
</div>
<div class="col3">
<h3>Quick links</h3>
<a href="cart.html">Cart</a>
<a href="#demo">Privacy Policy</a>
<a href="#demo">Terms Of Use</a>
<a href="#demo">FAQ</a>
</div>
</footer>
<script src="checkout.js"></script>
</body>
<script src="check-out.js"></script>
</html>