update
This commit is contained in:
parent
726f084373
commit
1986cef18a
4 changed files with 71 additions and 1 deletions
16
400.html
Normal file
16
400.html
Normal 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
16
404.html
Normal 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>
|
|
@ -1,3 +1,5 @@
|
|||
# cat-errors
|
||||
|
||||
cat error codes!
|
||||
|
||||
Uses [cataas](https://cataas.com) to grab random images for error codes
|
36
style.css
Normal file
36
style.css
Normal 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;
|
||||
}
|
Loading…
Add table
Reference in a new issue