-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
76 lines (72 loc) · 2.57 KB
/
error.html
File metadata and controls
76 lines (72 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Error</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="stylesheet" href="css/main.css" />
</head>
<body style="background: linear-gradient(to bottom, #f9f9f9, #f7a1a1); height: 100vh; height: 100svh; overflow: hidden;">
<header>
<!-- place navbar here -->
<nav class="navbar navbar-expand-lg bg-body-tertiary navBar">
<div class="container-fluid">
<img src="src/Logo.png" class="opacity-50" height="28px" alt="" />
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
id="navbar-toggler"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse navLinks" id="navbarNav">
<ul class="navbar-nav nav-pills">
<li class="nav-item">
<a class="nav-link text-body-tertiary" href="index.html"
>HOME</a
>
</li>
<li class="nav-item">
<a
class="nav-link active bg-danger text-white px-3 rounded-4 fw-bolder"
aria-current="page"
style="cursor: default"
>ERROR</a
>
</li>
<li class="nav-item">
<a class="nav-link text-body-tertiary" href="contact.html"
>CONTACT US</a
>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="d-flex flex-column align-items-center justify-content-center p-5" style="min-height: 80vh;">
<div class="display-1 fw-bolder my-2">404 ERROR</div>
<div class="display-4 mb-3" style="text-align: center;" id="errorMessage"></div>
<div class="mt-4"><a href="index.html"><button type="button" class="btn btn-danger btn-lg p-3 rounded-4"><span class="h2 px-3">Go To Home</span></button></a></div>
</div>
</main>
<!-- Bootstrap JavaScript Libraries -->
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/app.js"></script>
<script>
document.addEventListener('DOMContentLoaded',()=>{
errorMessage();
})
</script>
</body>
</html>