-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (29 loc) · 1.48 KB
/
404.html
File metadata and controls
32 lines (29 loc) · 1.48 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Not Found | TNTClient</title>
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="48x48" href="images/favicon-48x48.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="144x144" href="images/favicon-144x144.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div style="background: rgba(0, 0, 0, 1);">
<img src="/images/mainPage/main.jpg" alt="" class="position-absolute object-fit-cover opacity-25 w-100 vh-100 z-2">
<div class="position-relative container d-flex mx-auto flex-column text-center vh-100 z-3">
<div class="mb-auto"></div>
<div style="max-width: 21em" class="mx-auto text-light">
<span class="display-1 d-block">404</span>
<div class="mb-4 lead">The page you are looking for was not found.</div>
<a href="/" class="btn btn-lg btn-light fw-bold border-white bg-white mt-4">Back to Home</a>
</div>
<div class="mt-auto"></div>
</div>
</div>
</body>
</html>