Template Landing Page Dark

Landing page

TEMPLATE

Código

<!DOCTYPE html>
<html lang="pt-br">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Enepta - Landing Page</title>
  <!-- Bootstrap CSS -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
  <style>
    body, html {
      height: 100%;
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #000;
    }

    /* Navbar Styling */
    .navbar-light .navbar-nav .nav-link {
      color: #000;
      text-transform: uppercase;
      margin-right: 15px;
    }

    .navbar-light .navbar-brand {
      font-weight: bold;
      color: #000;
    }

    /* Full-height container */
    .landing-container {
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: url('https://via.placeholder.com/1920x1080.png') no-repeat center center/cover;
      position: relative;
    }

    /* Overlay effect */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7); /* Darker overlay */
    }

    /* Logo and text styling */
    .logo-content {
      z-index: 2;
      text-align: center;
      color: #fff;
    }

    .logo-content img {
      max-width: 150px; /* Adjust the size of the logo */
      margin-bottom: 20px;
    }

    .logo-content h1 {
      font-size: 4rem;
      letter-spacing: 3px;
      font-weight: bold;
    }

    .logo-content p {
      font-size: 1.2rem;
      letter-spacing: 2px;
      margin-top: -15px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .logo-content h1 {
        font-size: 2.5rem;
      }
      
      .logo-content p {
        font-size: 1rem;
      }
      
      .logo-content img {
        max-width: 100px;
      }
    }
  </style>
</head>
<body>

<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
  <div class="container">
    <a class="navbar-brand" href="#">Enepta</a>
    <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
      <span class="navbar-toggler-icon"></span>
    </button>
    <div class="collapse navbar-collapse justify-content-end" id="navbarNav">
      <ul class="navbar-nav">
        <li class="nav-item">
          <a class="nav-link" href="#">Home</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#">Sobre</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#">Serviços</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#">Contato</a>
        </li>
      </ul>
    </div>
  </div>
</nav>

<!-- Landing page container -->
<div class="landing-container">
  <!-- Dark overlay -->
  <div class="overlay"></div>
  
  <!-- Logo and text content -->
  <div class="logo-content">
    <img src="https://via.placeholder.com/150x150.png" alt="Logo Enepta">
    <h1>ENEPTA</h1>
    <p>Brasil</p>
  </div>
</div>

<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>

</body>
</html>