This commit is contained in:
brookee 2024-02-21 02:16:39 -05:00
parent 726f084373
commit 1986cef18a
4 changed files with 71 additions and 1 deletions

16
400.html Normal file
View file

@ -0,0 +1,16 @@
<html>
<head>
<title>400 | Bad Request!</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
<image id="cat" src="https://cataas.com/cat?filter=mono"></image>
<a></a>
<h1>400</h1>
</div>
</body>
</html>

16
404.html Normal file
View file

@ -0,0 +1,16 @@
<html>
<head>
<title>404 | Not Found!</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
<image id="cat" src="https://cataas.com/cat?filter=mono"></image>
<a>purr-plexed by this request</a>
<h1>404</h1>
</div>
</body>
</html>

View file

@ -1,3 +1,5 @@
# cat-errors
cat error codes!
cat error codes!
Uses [cataas](https://cataas.com) to grab random images for error codes

36
style.css Normal file
View file

@ -0,0 +1,36 @@
body {
background-color: black;
font-family: serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
a {
color: white;
}
h1 {
color: white;
font-size: 4.5rem;
margin-top: 0;
font-weight: 700;
}
#cat {
width: 300px;
border: solid;
border-color: white;
border-width: 3px;
padding: 5px;
margin-bottom: 10px;
}
#container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}