Перейти к основному содержанию

html код баннера

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Drupal 11 Stack</title>
  <style>
    .container {
      max-width: 1440px;
      margin: auto;
      padding: 150px 0;
      background: linear-gradient(135deg, #0088cc, #0055aa);
      color: white;
      font-family: 'Segoe UI', Roboto, Arial, sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    h1 {
      font-size: 6rem;
      margin: 0 0 0.2em 0;
      letter-spacing: -2px;
    }
    .sub {
      font-size: 3rem;
      margin: 0.1em 0;
    }
  </style>
</head>
<body>
  <section class="container">
    <h1>Заголовок баннера</h1>
    <div class="sub">Подзаголовок 1</div>
    <div class="sub">Подзаголовок 2</div>
  </section>
</body>
</html>