-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
57 lines (55 loc) · 1.86 KB
/
404.html
File metadata and controls
57 lines (55 loc) · 1.86 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="/css/main.css" />
<link rel="stylesheet" type="text/css" href="/css/gruv.css" />
<title>404 | Not Found</title>
<style>
.error-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
min-height: 70vh;
width: 100%;
}
.error-code {
font-family: 'daydream', sans-serif;
font-size: 5rem;
color: var(--blue);
margin: 0;
}
.card.error-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 500px;
padding: 30px;
}
</style>
</head>
<body>
<div class="navbar">
<span id="c0mplex">Error</span>
</div>
<main id="content">
<div class="error-container">
<div class="card error-card">
<h1 class="error-code">404</h1>
<h2>Lost in the corner?</h2>
<p>
The page you are looking for doesn't exist or has been moved
to another isolated part of the internet.
</p>
<a href="/" class="hov" style="color: var(--blue); text-decoration: underline; margin-top: 15px;">Go back home</a>
</div>
</div>
</main>
<footer></footer>
<script src="/js/spa.js"></script>
</body>
</html>