error-pages/cats/404.html
2021-10-15 05:50:24 +00:00

44 lines
1012 B
HTML

<!DOCTYPE html>
<!--
Error 404: Not Found
Description: The server can not find the requested page
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow" />
<title>Not Found</title>
<style>
html, body {
margin: 0;
background-color: #000;
color: #aaa;
overflow: hidden;
}
.centered {
height: 100vh;
align-items: center;
display: flex;
justify-content: center
}
.centered img {
max-width: 750px;
width: 100%;
}
</style>
</head>
<body>
<div class="centered">
<!-- Pictures provider: <https://http.cat/> -->
<img src="https://http.cat/404.jpg" alt="Not Found">
</div>
</body>
<!--
Error 404: Not Found
Description: The server can not find the requested page
-->
</html>