-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckout.html
More file actions
197 lines (192 loc) · 7.26 KB
/
checkout.html
File metadata and controls
197 lines (192 loc) · 7.26 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./CSS/Base.css">
<link rel="stylesheet" href="./CSS/checkout.css">
</head>
<body>
<header>
<div class="header-container">
<div class="leftSide">
<img
src="./icons/Logo.png"
alt="LOGO">
<h3><i>StyleHub</i></h3>
</div>
<div class="center">
<nav class="NavBar">
<a href="index.html">Home</a>
<a href>Categories</a>
<a href>New</a>
<a href>Sale</a>
</nav>
</div>
<div class="rightSide">
<div class="search">
<input class="searchForm" type="search"
placeholder="search">
<span class="search-icon">🔍</span>
</div>
<div class="icon">
<a href="cart.html" title="Shopping Cart">
<span class="ShoppingCart">🛒</span>
<span class="count">3</span>
</a>
</div>
<div class="icon1">
<a href="account.html">
<span>Account</span>👤
</a>
</div>
<div class="Menu">
<!-- hidden checkbox -->
<input type="checkbox" id="drawer-toggle" />
<!-- label acts as button -->
<label for="drawer-toggle" class="menu-btn">
<img src="./icons/icons8-menu-24.png" alt="Menu">
</label>
<label for="drawer-toggle" class="overlay"></label>
<aside class="drawer">
<h3>Menu</h3>
<nav>
<a href="#">Home</a>
<a href="#">Categories</a>
<a href="#">New</a>
<a href="#">Sale</a>
<a href="account.html">Account</a>
</nav>
</aside>
</div>
</div>
</div>
</header>
<main id="main" class="checkout-section section">
<div class="container">
<h1>Checkout</h1>
<div class="checkout-progress">
<div class="progress-step current">
<div class="step-number">1</div><div class="step-title">Shipping</div>
</div>
<div class="progress-step">
<div class="step-number">2</div><div class="step-title">Payment</div>
</div>
<div class="progress-step">
<div class="step-number">3</div><div class="step-title">Review</div>
</div>
<div class="progress-step">
<div class="step-number">4</div><div class="step-title">Done</div>
</div>
</div>
<div class="two-col-summary">
<section class="panel">
<h2>Shipping Information</h2>
<form class="mt-3">
<div class="form-group">
<label class="form-label" for="first">First name</label>
<input class="form-input" id="first" type="text" required placeholder="Jane" />
</div>
<div class="form-group">
<label class="form-label" for="last">Last name</label>
<input class="form-input" id="last" type="text" required placeholder="Doe" />
</div>
<div class="form-group">
<label class="form-label" for="email">Email</label>
<input class="form-input" id="email" type="email" required placeholder="you@example.com" />
</div>
<div class="form-group">
<label class="form-label" for="phone">Phone</label>
<input class="form-input" id="phone" type="tel" required placeholder="(555) 123-4567" />
</div>
<div class="form-group">
<label class="form-label" for="addr1">Address line 1</label>
<input class="form-input" id="addr1" type="text" required placeholder="123 Main St" />
</div>
<div class="form-group">
<label class="form-label" for="addr2">Address line 2</label>
<input class="form-input" id="addr2" type="text" placeholder="Apt, suite, etc." />
</div>
<div class="form-row">
<div class="form-group">
<label class="form-label" for="city">City</label>
<input class="form-input" id="city" type="text" required />
</div>
<div class="form-group">
<label class="form-label" for="state">State</label>
<input class="form-input" id="state" type="text" required />
</div>
</div>
<div class="form-row">
<div class="form-group">
<label class="form-label" for="zip">ZIP</label>
<input class="form-input" id="zip" type="text" required />
</div>
<div class="form-group">
<label class="form-label" for="country">Country</label>
<input class="form-input" id="country" type="text" required />
</div>
</div>
<div class="mt-3 btn-row">
<a class="btn btn-primary" href="#">Continue to Payment</a>
</div>
</form>
</section>
<aside class="panel">
<h2>Order Summary</h2>
<div class="summary-row">
<span>Subtotal</span><strong>$238.00</strong>
</div>
<div class="summary-row">
<span>Shipping</span><span>Free over $75</span>
</div>
<div class="summary-row">
<span>Tax</span><span>—</span>
</div>
<div class="summary-row summary-total">
<span>Total</span><span>$238.00</span>
</div>
</aside>
</div>
</div>
</main>
<footer>
<div class="footer-container">
<div class="footer-grid">
<div>
<h4>StyleHub</h4>
<p>Your destination for modern fashion.</p>
</div>
<div>
<h4>Shop</h4>
<ul>
<li><a href="categories.html">Women</a></li>
<li><a href="categories.html">Men</a></li>
<li><a href="categories.html">Accessories</a></li>
<li><a href="categories.html">Sale</a></li>
</ul>
</div>
<div>
<h4>Support</h4>
<ul>
<li><a href="support.html">Help Center</a></li>
<li><a href="#">Shipping & Returns</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms</a></li>
</ul>
</div>
<div>
<h4>Account</h4>
<ul>
<li><a href="account.html">Dashboard</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">© 2025 StyleHub. All rights reserved.</div>
</div>
</footer>
</body>
</html>