-
Notifications
You must be signed in to change notification settings - Fork 49
/
404Error.html
66 lines (66 loc) · 2.52 KB
/
404Error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="/css/404Error.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<img src="Assets/icons8-amazon-50.png" alt=">
</div>
<div class="location">
<span>Deliver to Thane 400601</span>
<a class="Updateclass" href="#">Update location</a>
</div>
<div class="search-bar">
<select>
<option>All</option>
</select>
<input type="text" placeholder="Search Amazon.in">
<button>
<img src="Assets/magnifying-glass.png" alt="Search Icon">
</button>
</div>
<div class="account-links">
<div><a href="http://127.0.0.1:3002/Amazon-Hacktoberfest2024/login.html">Login</a></div>
<div><a href="http://127.0.0.1:3002/Amazon-Hacktoberfest2024/Signup.html">SignUp</a></div>
<div><a href="http://127.0.0.1:3002/Amazon-Hacktoberfest2024/product.html" class="cart">
<img src="Assets/icons8-cart-50.png" alt="Cart Icon">
Our Products
</a></div>
<div><a href="http://127.0.0.1:5501/Amazon-Hacktoberfest2024/contactus.html">Contact Us</a></div>
</div>
</div>
<div class="sub-navbar">
<div class="boxsub">
<a href="#">All</a>
<a href="#">Fresh</a>
<a href="#">MX Player</a>
<a href="#">Sell</a>
<a href="#">Best Sellers</a>
<a href="#">Today's Deals</a>
<a href="#">Mobiles</a>
<a href="#">Electronics</a>
<a href="#">Home & Kitchen</a>
<a href="#">Prime</a>
<a href="#">Customer Service</a>
</div>
</div>
</header>
</nav>
<div class="error-page">
<div class="content">
<h1>404</h1>
<p>Oops! It seems you're lost in paradise.</p>
<p>The page you're looking for doesn't exist.</p>
<a href="index.html" class="home-btn">Back to Homepage</a>
</div>
</div>
</body>
</html>