27 lines
750 B
HTML
27 lines
750 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>404: File not found</title>
|
|
<style>
|
|
a {
|
|
background-color: black;
|
|
color: greenyellow;
|
|
}
|
|
body {
|
|
padding: 2em 20%;
|
|
background-color: black;
|
|
color: green;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>404: I'm sorry, Dave, I can't do that</h1>
|
|
|
|
<p>The file you requested was not found on this server.</p>
|
|
|
|
<footer>
|
|
<a href="https://git.journeyman.cc/simon/gild">The Generic Internet Listener Daemon</a>, Copyright: (c) Simon Brooke 1997
|
|
</footer>
|
|
</body>
|
|
</html> |