-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
179 lines (150 loc) · 5.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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!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">
<link rel="stylesheet" href="./styles/home.css" />
<link rel="icon" type="image/png" href="./image/logo1.png"/>
<link rel="stylesheet" href="./styles/bag.css"/>
<link rel="stylesheet" href="./styles/checkout.css">
<title>MEN'S CLOSET</title>
</head>
<body>
<div id="nav">
<div id="nav_icon">
<a href="./bag.html">< BACK TO BAG</a>
</div>
<a href="./home.html"> <img src="./image/logo.png" alt="error"></a>
<div id="nav_icon">
<i class="fa-solid fa-lock fa-small"></i>
<p>Shopping is secure <br>with charlestyrwhitt</p>
</div>
</div>
<hr>
<div class="container">
<div class="form-box">
<h1>About you</h1>
<form>
<div class="input-group">
<p>First Name</p>
<div class="input-field">
<input type="text" id="name1">
</div>
<p>Last Name</p>
<div class="input-field">
<input type="text" id="name2">
</div>
<p>Email</p>
<div class="input-field">
<input type="email" id="email">
</div>
<p>Contact Number</p>
<div class="input-field">
<input type="number" id="num">
</div>
<p>Address</p>
<div class="input-field">
<input type="text" id="address">
</div>
</div>
<div class="btn-field">
<button id="done">Pay with <span id="pal">PayPal</span></button>
<button id="place">PLACE ORDER</button>
</div>
</form>
</div>
</div>
<hr>
<div class="footer-container">
<section class="footer">
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div class="card1">
<h5>HELP</h5>
<div class="list">
<a href="#!" class="text-dark">FAQS</a><br>
<a href="#!" class="text-dark">SHIPPING</a><br>
<a href="#!" class="text-dark">RETURNS</a><br>
<a href="#!" class="text-dark">SIZE QUIDES</a><br>
<a href="#!" class="text-dark">SHIRT MULTIBUY</a><br>
<a href="#!" class="text-dark">FIND A STORE</a><br>
<a href="#!" class="text-dark">CONTACT US</a><br>
<a href="#!" class="text-dark">WHERE IS MY ORDER</a>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="card2">
<h5>LEGAL</h5>
<div class="list">
<a href="#!" class="text-dark">TERMS AND CONDITIONS</a><br>
<a href="#!" class="text-dark">PRIVACY POLICY</a><br>
<a href="#!" class="text-dark">OUR COOKIE POLICY</a><br>
<a href="#!" class="text-dark">ACCESSIBILITY STATEMENT</a><br>
<a href="#!" class="text-dark">EHTICAL TRADING POLICY</a><br>
<a href="#!" class="text-dark">MODERN SLAVERY STATEMENT</a>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div>
<h5>MORE INFO</h5>
<div class="list">
<a href="#!" class="text-dark">ABOUT US</a><br>
<a href="#!" class="text-dark">CUSTOM SHIRTS</a><br>
<a href="#!" class="text-dark">GIFT VOUCHERS</a><br>
<a href="#!" class="text-dark">COUPON CODES</a><br>
<a href="#!" class="text-dark">DOING THINGS PROPERLY</a>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="card4">
<h5>CAREERS</h5>
<div class="list">
<a href="" class="text-dark">UK VACANCIES</a><br>
<a href="" class="text-dark">OUR CELIEFS</a><br>
<a href="" class="text-dark">OUR PEOPLE</a><br>
<div class="social-icon">
<a href="" class="text-dark">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="" class="text-dark">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="" class="text-dark">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
</div>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</section>
<div id="foot-bar">
<p>We accept:</p>
<div id="payment">
<i class="fa-brands fa-cc-visa fa-2xl"></i>
<i class="fa-brands fa-cc-amex fa-2xl"></i>
<i class="fa-brands fa-cc-mastercard fa-2xl"></i>
<i class="fa-brands fa-cc-paypal fa-2xl"></i>
<i class="fa-brands fa-apple-pay fa-2xl"></i>
</div>
</div>
<div class="bottom-bar">
<p>© 2022 Charles Tyrwhitt Shirts Ltd.</p>
<p>All products are imported into the US.</p>
</div>
<div class="bottom-bar">
<p>USDDEFAULT</p>
<P>CHANGE COUNTRY</P>
</div>
</div>
<script src="https://kit.fontawesome.com/938cd4489b.js" crossorigin="anonymous"></script>
<!-- <script src="./src/scripts/products.js"></script> -->
<script src="./src/scripts/checkout.js"></script>
</body>
</html>