-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror.html
More file actions
95 lines (85 loc) · 3.51 KB
/
Copy patherror.html
File metadata and controls
95 lines (85 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Egona</title>
<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=Inter:wght@400;500&family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="dict/styles.css" />
</head>
<body class="">
<div class="h-[620px] flex flex-col items-center justify-center">
<h1 class="font-bold text-4xl tracking-[13px] mb-3">404 Not Found</h1>
<p class="text-gray-600 tracking-[2px]">Your visited page is not found. You may go to the home page.</p>
<a href="index.html" class=" mt-8 px-4 py-2 bg-green-700 text-white rounded">Back to home page</a>
</div>
<footer class="bg-footer_color h-80 flex items-center content-center">
<div class="text-white font-body w-full flex justify-evenly">
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Exclusive</h1>
<h2 class="pb-3 text-[15px]">Subscribe</h2>
<p class="pb-3 text-[13px]">Get 10% off your first order</p>
<div
class="flex items-center content-center gap-5 border-2 border-stone-50 rounded-md py-1 px-2"
>
<p class="text-[13px] text-slate-200">Enter your email</p>
<img src="images/icon-send.svg" alt="" />
</div>
</div>
<div class="w-60">
<h1 class="pb-3 font-medium text-[20px]">Support</h1>
<h2 class="pb-3 text-[15px]">
111 Teen Business Compulex, Nhub Nigeria, Jos, Plateau State.
</h2>
<p class="pb-3 text-[13px]">egona-beta@gmail.com</p>
<p class="pb-3 text-[13px]">+234 8085499803</p>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Account</h1>
<h2 class="pb-3 text-[15px]">My Account</h2>
<h2 class="pb-3 text-[15px]">Login / Register</h2>
<h2 class="pb-3 text-[15px]">Cart</h2>
<h2 class="pb-3 text-[15px]">Wishlist</h2>
<h2 class="pb-3 text-[15px]">Shop</h2>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Quick Link</h1>
<h2 class="pb-3 text-[15px]">Privacy Policy</h2>
<h2 class="pb-3 text-[15px]">Terms Of Use</h2>
<h2 class="pb-3 text-[15px]">FAQ</h2>
<h2 class="pb-3 text-[15px]">Contact</h2>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Download App</h1>
<h2 class="pb-3 text-[15px]">
Save 1,000 naira with App New User Only
</h2>
<div class="pb-3 flex gap-3 justify-start items-center">
<div>
<img src="images/Qrcode 1.png" alt="" />
</div>
<div>
<img class="mb-2" src="images/googleplay.png" alt="" />
<img src="images/appplay.png" alt="" />
</div>
</div>
<div class="flex gap-5">
<img src="images/facebbok.svg" alt="" />
<img src="images/twitter.svg" alt="" />
<img src="images/insta.svg" alt="" />
<img src="images/linkin.svg" alt="" />
</div>
</div>
</div>
</footer>
<p
class="flex justify-center items-center text-white py-3 bg-footer_color border-t-2 border-white"
>
© Copyright e-gona 2022. All right reserved
</p>
</body>
</html>