-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurl_not_found.html
More file actions
executable file
·48 lines (40 loc) · 994 Bytes
/
url_not_found.html
File metadata and controls
executable file
·48 lines (40 loc) · 994 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html>
<head>
<link rel="icon" type="image/png" href="/aaxolotl.png">
<style>
#main {
margin: auto;
width: max-content;
text-align: center;
}
#source {
width: 400px;
}
#second {
margin: auto;
text-align: center;
margin-top: 20px;
width: 500px;
}
h1 {
font-size: 50px;
margin-bottom: 0px;
}
h2 {
margin-top: 0px;
}
h6 {
font-size: 9px;
margin-top: 0px;
}
</style>
<title>HTTP Error 404</title>
</head>
<body>
<div id= main>
<h1>Error 404</h1>
<h2>File Not Found</h2>
<img src="/error_images/miku2.gif" width = 200px>
</div>
</body>
</html>