28 lines
597 B
JSON
28 lines
597 B
JSON
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>404: Page not found</title>
|
|
<style>
|
|
body, html {
|
|
background-color: #000;
|
|
}
|
|
h2, p {
|
|
color: #fff;
|
|
}
|
|
a {
|
|
color: #0000EE;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
a:visited {
|
|
color: #800080;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>404: Page not found</h2>
|
|
<p>Idk where you're trying to go, but its not here....</p>
|
|
<a herf="#" onclick="history.back()">Go Back?</a>
|
|
</body>
|
|
</html>
|