initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>403 Forbidden...</title>
|
||||
<link rel="stylesheet" href="./errors.css" />
|
||||
</head>
|
||||
<body>
|
||||
<img src="./img/403.png" alt="" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>404 Not found...</title>
|
||||
<link rel="stylesheet" href="./errors.css" />
|
||||
</head>
|
||||
<body>
|
||||
<img src="./img/404.png" alt="" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>500 Internal Server Error...</title>
|
||||
<link rel="stylesheet" href="./errors.css" />
|
||||
</head>
|
||||
<body>
|
||||
<img src="../img/500.png" alt="" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>502 Bad gateway...</title>
|
||||
<link rel="stylesheet" href="./errors.css" />
|
||||
</head>
|
||||
<body>
|
||||
<img src="../img/502.png" alt="" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>503 Service unavailable...</title>
|
||||
<link rel="stylesheet" href="./errors.css" />
|
||||
</head>
|
||||
<body>
|
||||
<img src="../img/503.png" alt="" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>504 Gateway timeout...</title>
|
||||
<link rel="stylesheet" href="./errors.css" />
|
||||
</head>
|
||||
<body>
|
||||
<img src="../img/504.png" alt="" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,24 @@
|
||||
@keyframes fade {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
background-color: #1f1f28;
|
||||
display: flex;
|
||||
}
|
||||
img {
|
||||
animation: fade 500ms ease-in-out;
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
}
|
||||
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 106 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 104 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 106 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 106 KiB |
Reference in New Issue
Block a user