-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
49 lines (47 loc) · 2.14 KB
/
404.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="spots.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light nav-style">
<a class="navbar-brand" href="parking.html">Redfox parking</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="spots.html">Spots</a>
</li>
<li class="nav-item">
<a class="nav-link" href="404.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="404.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
<div class="container mt-5 text-center">
<div class="floating-card">
<div class="card-body">
<h1 class="display-1 text-danger">404</h1>
<h2 class="mb-4">Page Not Found</h2>
<p class="lead mb-4">Sorry, the parking lot details you're looking for are not available yet.</p>
<a href="parking.html" class="btn btn-outline-danger">Return Home</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</body>
<footer>Robsen Gelalcha© 2024</footer>
</html>