-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
38 lines (38 loc) · 912 Bytes
/
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
<!doctype html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="./img/favicon.ico" />
<title>404</title>
<style>
@import url("https://fonts.googleapis.com/css?family=Lexend:400,700");
@import url("https://fonts.googleapis.com/css?family=Staatliches:400,700");
body {
background-color: #131723;
color: white;
margin: 0;
}
.text {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
img {
width: 50%;
height: 10%;
}
a {
color: orange;
}
</style>
</head>
<body>
<div class="text">
<h1 style="font-family: Staatliches;">404 Error</h1>
<img src="./img/big-ravager-face.png">
<p style="font-family: Lexend;">That requested URL or file was not found. <a href="../index.html">Return home?</a></p>
</div>
</body>
</html>