Guest User

Untitled

a guest
May 22nd, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.90 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4.    <script src="//code.jivo.ru/widget/pbSIzjEWc8" async></script>
  5.  
  6.     <meta charset="UTF-8">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.     <title>Ошибка</title>
  9.     <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
  10.     <style>
  11.         body {
  12.             margin: 0;
  13.             font-family: 'Roboto', sans-serif;
  14.             background-color: #121212;
  15.             color: #ffffff;
  16.         }
  17.         header {
  18.             display: flex;
  19.             align-items: center;
  20.             padding: 10px;
  21.             background-color: #1e1e1e;
  22.             box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  23.         }
  24.         header img {
  25.             height: 60px;
  26.             width: 99px;
  27.         }
  28.         nav {
  29.             margin-left: auto;
  30.             display: flex;
  31.             gap: 20px;
  32.         }
  33.         nav a {
  34.             color: #ffffff;
  35.             text-decoration: none;
  36.             font-weight: bold;
  37.             padding: 10px 15px;
  38.             transition: background-color 0.3s;
  39.         }
  40.         nav a.active {
  41.             background-color: #333333;
  42.             border-radius: 5px;
  43.         }
  44.         nav a:hover {
  45.             background-color: #333333;
  46.             border-radius: 5px;
  47.         }
  48.         main {
  49.             padding: 40px;
  50.         }
  51.         .title {
  52.             font-size: 36px;
  53.             font-weight: bold;
  54.             margin-bottom: 20px;
  55.             text-align: center;
  56.         }
  57.         .content {
  58.             font-size: 18px;
  59.             font-weight: normal;
  60.             margin-bottom: 20px;
  61.             text-align: center;
  62.         }
  63.         .content p {
  64.             margin-bottom: 15px;
  65.             line-height: 1.6;
  66.         }
  67.         footer {
  68.             padding: 20px;
  69.             background-color: #1e1e1e;
  70.             text-align: center;
  71.             font-size: 14px;
  72.             border-top: 1px solid #333333;
  73.         }
  74.         footer a {
  75.             color: #ffffff;
  76.             text-decoration: none;
  77.             transition: color 0.3s;
  78.         }
  79.         footer a:hover {
  80.             color: #aaaaaa;
  81.         }
  82.         .button {
  83.             display: inline-block;
  84.             padding: 10px 20px;
  85.             margin-top: 20px;
  86.             background-color: #333333;
  87.             color: #ffffff;
  88.             text-decoration: none;
  89.             border-radius: 5px;
  90.             transition: background-color 0.3s;
  91.         }
  92.         .button:hover {
  93.             background-color: #555555;
  94.         }
  95.         .card {
  96.             background-color: #1e1e1e;
  97.             border: 1px solid #333333;
  98.             border-radius: 5px;
  99.             padding: 20px;
  100.             margin-bottom: 20px;
  101.         }
  102.         .card h3 {
  103.             margin-top: 0;
  104.         }
  105.         .card p {
  106.             margin-bottom: 10px;
  107.         }
  108.        
  109.     </style>
  110. </head>
  111. <body>
  112.     <header>
  113.         <img src="/resources/logo.png" width="99" height="60" alt="NRT Corp logo">
  114.         <nav>
  115.             <a href="/index.html">Главная</a>
  116.             <a href="/staff.html">Команда</a>
  117.             <a href="/news.html">Новости</a>
  118.             <a href="/help.html">Помощь</a>
  119.             <a href="/projects.html">Проекты</a>
  120.             <a href="/misc.html">Другое</a>
  121.         </nav>
  122.     </header>
  123.     <main>
  124.         <div class="title">404</div>
  125.         <div class="content">
  126.             <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFiq6bSGb_povRUnrq2ONTKQc5Bd8Fjt3QRUNXzvKnkw&s">
  127.             <p>Кажется, ты попал не туда. Попробуй снова.</p>
  128.         </div>
  129.     </main>
  130.     <footer>
  131.         &copy; 2024 NRT Corp. Все права защищены антивирусом Касперского. | <a href="privacy.html">Политика конфиденциальности</a>
  132.     </footer>
  133. </body>
  134. </html>
Advertisement
Add Comment
Please, Sign In to add comment