fixed errors

This commit is contained in:
2026-04-14 16:32:55 +03:00
parent 724f16b589
commit 7c88e2aeb4
7 changed files with 13 additions and 12 deletions
+2 -2
View File
@@ -5,9 +5,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title>403 Forbidden...</title> <title>403 Forbidden...</title>
<link rel="stylesheet" href="./errors.css" /> <link rel="stylesheet" href="/_errors/errors.css" />
</head> </head>
<body> <body>
<img src="./img/403.png" alt="" /> <img src="/_errors/img/403.png" />
</body> </body>
</html> </html>
+2 -2
View File
@@ -5,9 +5,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title>404 Not found...</title> <title>404 Not found...</title>
<link rel="stylesheet" href="./errors.css" /> <link rel="stylesheet" href="/_errors/errors.css" />
</head> </head>
<body> <body>
<img src="./img/404.png" alt="" /> <img src="/_errors/img/404.png" alt="" />
</body> </body>
</html> </html>
+2 -2
View File
@@ -5,9 +5,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title>500 Internal Server Error...</title> <title>500 Internal Server Error...</title>
<link rel="stylesheet" href="./errors.css" /> <link rel="stylesheet" href="/_errors/errors.css" />
</head> </head>
<body> <body>
<img src="../img/500.png" alt="" /> <img src="./_errors/img/500.png" alt="" />
</body> </body>
</html> </html>
+2 -2
View File
@@ -5,9 +5,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title>502 Bad gateway...</title> <title>502 Bad gateway...</title>
<link rel="stylesheet" href="./errors.css" /> <link rel="stylesheet" href="/_errors/errors.css" />
</head> </head>
<body> <body>
<img src="../img/502.png" alt="" /> <img src="/_errors/img/502.png" alt="" />
</body> </body>
</html> </html>
+2 -2
View File
@@ -5,9 +5,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title>503 Service unavailable...</title> <title>503 Service unavailable...</title>
<link rel="stylesheet" href="./errors.css" /> <link rel="stylesheet" href="/_errors/errors.css" />
</head> </head>
<body> <body>
<img src="../img/503.png" alt="" /> <img src="./_errors/img/503.png" alt="" />
</body> </body>
</html> </html>
+2 -2
View File
@@ -5,9 +5,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title>504 Gateway timeout...</title> <title>504 Gateway timeout...</title>
<link rel="stylesheet" href="./errors.css" /> <link rel="stylesheet" href="/_errors/errors.css" />
</head> </head>
<body> <body>
<img src="../img/504.png" alt="" /> <img src="./_errors/img/504.png" alt="" />
</body> </body>
</html> </html>
+1
View File
@@ -21,4 +21,5 @@ img {
animation: fade 500ms ease-in-out; animation: fade 500ms ease-in-out;
margin: auto; margin: auto;
width: 100%; width: 100%;
max-width: 1024px;
} }