/
RoditelevVV
/
web-static-labs
Обзор
Документация
Войти
/
RoditelevVV
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/404.html
84 строки
2 KB
karpov
finish lab3, lab4
12 мар 2026, 08:19
12 мар 2026, 08:19
74cd197
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Страница не найдена - 404</title> <style> :root { --caribbean-current: #006466ff; --midnight-green: #065a60ff; --midnight-green-2: #0b525bff; --charcoal: #1b3a4bff; } body { font-family: Arial, sans-serif; max-width: 600px; margin: 0 auto; padding: 40px 20px; line-height: 1.5; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); color: var(--charcoal); min-height: 100vh; display: flex; align-items: center; justify-content: center; } .container { background-color: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 40px; text-align: center; border-left: 4px solid var(--midnight-green); } .error-code { font-size: 72px; font-weight: bold; color: var(--midnight-green); margin: 20px 0; } h1 { color: var(--charcoal); margin-bottom: 15px; } p { margin: 15px 0; color: var(--charcoal); } .links { margin-top: 30px; } a { display: inline-block; padding: 12px 24px; margin: 0 10px; background-color: var(--caribbean-current); color: white; text-decoration: none; border-radius: 4px; transition: background-color 0.3s; } a:hover { background-color: var(--midnight-green); } </style> </head> <body> <div class="container"> <div class="error-code">404</div> <h1>Страница не найдена</h1> <div class="links"> <a href="/">На главную</a> </div> </div> </body> </html>