initial commit

This commit is contained in:
2026-04-14 16:20:22 +03:00
commit 724f16b589
39 changed files with 1179 additions and 0 deletions
+13
View File
@@ -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>
+13
View File
@@ -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>
+13
View File
@@ -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>
+13
View File
@@ -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>
+13
View File
@@ -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>
+13
View File
@@ -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>
+24
View File
@@ -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%;
}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB