-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
267 lines (257 loc) · 16.3 KB
/
Copy path404.html
File metadata and controls
267 lines (257 loc) · 16.3 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | FashionHub</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.fashion-model {
background-image: url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg">
<div class="max-w-7xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<!-- Logo -->
<div>
<a href="index.html" class="flex items-center py-4 px-2">
<span class="font-semibold text-gray-500 text-2xl">FashionHub</span>
</a>
</div>
<!-- Primary Nav -->
<div class="hidden md:flex items-center space-x-1">
<a href="index.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Home</a>
<a href="men.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Men</a>
<a href="women.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Women</a>
<a href="kids.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Kids</a>
<a href="#" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Sale</a>
<a href="about.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">About</a>
</div>
</div>
<!-- Secondary Nav -->
<div class="hidden md:flex items-center space-x-3">
<a href="#" class="py-2 px-2 text-gray-500 hover:text-green-500 transition duration-300"><i class="fas fa-search"></i></a>
<a href="#" class="py-2 px-2 text-gray-500 hover:text-green-500 transition duration-300"><i class="fas fa-user"></i></a>
<a href="cart.html" class="py-2 px-2 text-gray-500 hover:text-green-500 transition duration-300 relative">
<i class="fas fa-shopping-cart"></i>
<span class="absolute -top-1 -right-1 bg-green-500 text-white text-xs rounded-full h-4 w-4 flex items-center justify-center">3</span>
</a>
</div>
<!-- Mobile menu button and cart icon -->
<div class="md:hidden flex items-center space-x-4">
<a href="cart.html" class="text-green-500 relative">
<i class="fas fa-shopping-cart"></i>
<span class="absolute -top-1 -right-1 bg-green-500 text-white text-xs rounded-full h-4 w-4 flex items-center justify-center">3</span>
</a>
<button class="outline-none mobile-menu-button">
<svg class="w-6 h-6 text-gray-500" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden mobile-menu">
<ul>
<li><a href="index.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Home</a></li>
<li><a href="men.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Men</a></li>
<li><a href="women.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Women</a></li>
<li><a href="kids.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Kids</a></li>
<li><a href="#" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Sale</a></li>
<li><a href="about.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">About</a></li>
</ul>
</div>
</nav>
<!-- 404 Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 md:py-24">
<div class="flex flex-col md:flex-row items-center">
<!-- Text Content -->
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<h1 class="text-6xl md:text-8xl font-bold text-gray-800 mb-4">404</h1>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Oops! Page Not Found</h2>
<p class="text-lg text-gray-600 mb-8">
The page you're looking for seems to have gone out of style.
Don't worry - we've got plenty of fashionable alternatives for you to explore.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="index.html" class="bg-green-500 hover:bg-green-600 text-white font-semibold py-3 px-8 rounded-md transition duration-300 text-center">
<i class="fas fa-home mr-2"></i> Return Home
</a>
<a href="#" class="border border-gray-300 hover:border-green-500 text-gray-700 hover:text-green-500 font-semibold py-3 px-8 rounded-md transition duration-300 text-center">
<i class="fas fa-search mr-2"></i> Browse Collection
</a>
</div>
</div>
<!-- Fashion Model Image -->
<div class="md:w-1/2 h-96 md:h-auto fashion-model rounded-lg shadow-xl relative overflow-hidden">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center">
<div class="text-center p-6">
<span class="text-white text-2xl font-bold block mb-2">Looking for something special?</span>
<span class="text-white">Try our search or check out our new arrivals</span>
</div>
</div>
</div>
</div>
</div>
<!-- Popular Categories -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<h3 class="text-2xl font-bold text-gray-900 mb-8">Explore Our Collections</h3>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Category 1 -->
<div class="group relative">
<div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none">
<img src="https://images.unsplash.com/photo-1529374255404-311a2a4f1fd9?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=925&q=80" alt="Men's clothing" class="w-full h-full object-center object-cover lg:w-full lg:h-full">
</div>
<div class="mt-4 flex justify-between">
<div>
<h3 class="text-lg font-medium text-gray-900">
<a href="men.html">
<span aria-hidden="true" class="absolute inset-0"></span>
Men's Collection
</a>
</h3>
<p class="mt-1 text-sm text-gray-500">Trendy outfits for men</p>
</div>
<p class="text-sm font-medium text-gray-900">From $29</p>
</div>
</div>
<!-- Category 2 -->
<div class="group relative">
<div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none">
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=987&q=80" alt="Women's clothing" class="w-full h-full object-center object-cover lg:w-full lg:h-full">
</div>
<div class="mt-4 flex justify-between">
<div>
<h3 class="text-lg font-medium text-gray-900">
<a href="women.html">
<span aria-hidden="true" class="absolute inset-0"></span>
Women's Collection
</a>
</h3>
<p class="mt-1 text-sm text-gray-500">Elegant styles for women</p>
</div>
<p class="text-sm font-medium text-gray-900">From $39</p>
</div>
</div>
<!-- Category 3 -->
<div class="group relative">
<div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none">
<img src="https://images.unsplash.com/photo-1604917019117-282e4a4a1d1a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=987&q=80" alt="Kids clothing" class="w-full h-full object-center object-cover lg:w-full lg:h-full">
</div>
<div class="mt-4 flex justify-between">
<div>
<h3 class="text-lg font-medium text-gray-900">
<a href="kids.html">
<span aria-hidden="true" class="absolute inset-0"></span>
Kids Collection
</a>
</h3>
<p class="mt-1 text-sm text-gray-500">Cute outfits for kids</p>
</div>
<p class="text-sm font-medium text-gray-900">From $19</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-12 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- About Column -->
<div>
<h3 class="text-lg font-semibold mb-4">About FashionHub</h3>
<p class="text-gray-400 mb-4">We offer premium quality clothing for men, women, and kids at affordable prices. Our mission is to make fashion accessible to everyone.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-tiktok"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-pinterest"></i>
</a>
</div>
</div>
<!-- Quick Links Column -->
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Shop</a></li>
<li><a href="about.html" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
</ul>
</div>
<!-- Customer Service Column -->
<div>
<h3 class="text-lg font-semibold mb-4">Customer Service</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Shipping Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Returns & Exchanges</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Size Guide</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li>
</ul>
</div>
<!-- Newsletter Column -->
<div>
<h3 class="text-lg font-semibold mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and exclusive offers.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-md focus:outline-none text-gray-900">
<button type="submit" class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-r-md transition duration-300">
<i class="fas fa-paper-plane"></i>
</button>
</form>
<div class="mt-4 flex items-center">
<i class="fas fa-phone-alt text-green-500 mr-2"></i>
<span class="text-gray-400">+256 770-849-939</span>
</div>
<div class="mt-2 flex items-center">
<i class="fas fa-envelope text-green-500 mr-2"></i>
<span class="text-gray-400">support@fashionhub.com</span>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<p class="text-gray-400">© 2025 FashionHub. All rights reserved.</p>
</div>
<div class="flex space-x-6 items-center">
<i class="fab fa-cc-visa text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="Visa"></i>
<i class="fab fa-cc-mastercard text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="Mastercard"></i>
<i class="fab fa-cc-paypal text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="PayPal"></i>
<i class="fab fa-cc-apple-pay text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="Apple Pay"></i>
</div>
</div>
</div>
</footer>
<!-- Mobile menu toggle script -->
<script>
const btn = document.querySelector(".mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
btn.addEventListener("click", () => {
menu.classList.toggle("hidden");
});
</script>
</body>
</html>