-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path404.html
More file actions
25 lines (25 loc) · 858 Bytes
/
404.html
File metadata and controls
25 lines (25 loc) · 858 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nimbella - Page Not Found</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
body{ font-family: 'Open Sans', 'Helvetica Neue', arial, san-serifs; }
h1{ font-size: 80px; color: #52BFD2; text-align: center; }
p{ text-align: center; }
a{ color: #52BFD2; }
</style>
</head>
<body>
<div class="container-fluid error_wrap">
<div class="container pt-2">
<img src="https://nimbella.com/images/nimbella-logo-full-color.svg" alt="Nimbella" width="113">
<hr class="mb-5">
<h1>404</h1>
<p>OOPS! SOMETHING WENT WRONG</p>
<p>The page you are looking for does not exist.
</div>
</div>
</body>
</html>