forked from spitkov/sxbin
73 lines
1.8 KiB
HTML
73 lines
1.8 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html lang="en">
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
<title>404 Not Found</title>
|
|||
|
<style>
|
|||
|
body {
|
|||
|
font-family: Arial, sans-serif;
|
|||
|
background-color: #121212;
|
|||
|
color: #e0e0e0;
|
|||
|
margin: 0;
|
|||
|
padding: 0;
|
|||
|
display: flex;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
height: 100vh;
|
|||
|
text-align: center;
|
|||
|
}
|
|||
|
.container {
|
|||
|
background: #1e1e1e;
|
|||
|
border-radius: 8px;
|
|||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|||
|
padding: 20px;
|
|||
|
max-width: 600px;
|
|||
|
width: 100%;
|
|||
|
}
|
|||
|
h1 {
|
|||
|
margin: 0;
|
|||
|
font-size: 100px;
|
|||
|
color: #f5f5f5;
|
|||
|
}
|
|||
|
p {
|
|||
|
margin: 10px 0;
|
|||
|
font-size: 18px;
|
|||
|
color: #e0e0e0;
|
|||
|
}
|
|||
|
a {
|
|||
|
color: #007bff;
|
|||
|
text-decoration: none;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
a:hover {
|
|||
|
text-decoration: underline;
|
|||
|
}
|
|||
|
.footer {
|
|||
|
margin-top: 20px;
|
|||
|
font-size: 14px;
|
|||
|
color: #99aab5;
|
|||
|
}
|
|||
|
.footer a {
|
|||
|
color: #61afef;
|
|||
|
text-decoration: none;
|
|||
|
}
|
|||
|
.footer a:hover {
|
|||
|
text-decoration: underline;
|
|||
|
}
|
|||
|
</style>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<div class="container">
|
|||
|
<h1>404</h1>
|
|||
|
<p>Oops! The page you’re looking for doesn’t exist.</p>
|
|||
|
<p><a href="/">Go back to the homepage</a></p>
|
|||
|
</br>
|
|||
|
</br>
|
|||
|
</br>
|
|||
|
</br>
|
|||
|
<p>Source code on: </p><a href="https://github.com/realcgcristi/aCloud" target="_blank">GitHub</a> | <a href="https://git.spitkov.hu/cgcristi/aCloud" target="_blank">Spitkov's Git</a>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|