Bootstrap hero header snipp with three services – v23

bootstrap hero header snipp

Bootstrap hero header snipp with three services and big image

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Bootstrap header snipp</title>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
  <link href="https://cdn.lineicons.com/4.0/lineicons.css" rel="stylesheet" />

  <style>
     .icon{
      display: inline-block;
      padding: 10px 20px;
      margin-bottom: 25px;
      border-radius: 6px;
     }
    .icon i{
      font-weight: 700;
      font-size:22px; 
      margin-top:5px;     
     }
  </style>
</head>

<body

<div class="">
  <div class="bg-primary-subtle">
  <div class="container text-center">
    <div class="row pt-5">
      <div class="col-lg-8 col-xxl-7 mx-auto text-center">
        <h2 class="fs-6 text-uppercase text-black-50 mb-3 fw-bold mb-4">Hello! This is Dropbox</h2>
        <h1 class="display-3 fw-bold mb-4 mb-lg-5">We bring rapid solutions for your business.</h1>
        <div class="d-flex justify-content-center">
          <span><a href="#" class="btn btn-primary rounded-pill me-2 px-5 py-3 fw-semibold">Explore Now</a></span>
          <span><a href="#" class="btn btn-outline-primary rounded-pill px-5 py-3 fw-semibold">Contact Us</a></span>
        </div>
      </div>
      <!--/column -->
    </div>
    <!-- /.row -->
  </div>
</div>
  <!-- /.container -->
  <img src="images/header-team.jpg" class="img-fluid mb-0 pb-0" alt="" />
</div>
<!-- /section -->
<div class="position-relative pt-5" style="top:-120px; margin: 0 auto;">
<div class="container bg-white rounded-3">
  <div class="row text-center pt-5">
    <div class="col-lg-9 col-xl-8 col-xxl-7 mx-auto">
      <h2 class="fs-6 text-uppercase opacity-50 mb-3 fw-bold mb-4">What We Do?</h2>
      <h3 class="display-6 mb-5 pb-1 fw-semibold">The service we offer is specifically designed to meet your needs.</h3>
    </div>
    <!-- /column -->
  </div>
  <div class="row g-5 text-center">
    <div class="col-md-4">
      <div class="icon bg-primary-subtle"> <i class="lni lni-phone text-primary"></i> </div>
      <h4 class="pb-3">24/7 Support</h4>
      <p class="mb-3 fs-5 text-black-50">Fusce dapibus tellus cursus porta tortor condimentum euismod massa justo vehicula sit amet et risus cras.</p>
      <a href="#" class="btn link-primary fw-semibold">Learn More &#8594;</a>
    </div>
    <!--/column -->
    <div class="col-md-4">
      <div class="icon bg-warning-subtle"> <i class="lni lni-laptop text-warning"></i> </div>
      <h4 class="pb-3">Daily Updates</h4>
      <p class="mb-3 fs-5 text-black-50">Fusce dapibus tellus cursus porta tortor condimentum euismod massa justo vehicula sit amet et risus cras.</p>
      <a href="#" class="btn link-warning fw-semibold">Learn More &#8594;</a>
    </div>
    <!--/column -->
    <div class="col-md-4">
      <div class="icon bg-danger-subtle"> <i class="lni lni-protection text-danger"></i> </div>
      <h4 class="pb-3">Secure Payments</h4>
      <p class="mb-3 fs-5 text-black-50">Fusce dapibus tellus cursus porta tortor condimentum euismod massa justo vehicula sit amet et risus cras.</p>
      <a href="#" class="btn link-danger fw-semibold">Learn More &#8594;</a>
    </div>
    <!--/column -->
  </div>
</div>
</div>
</body>

</html>
Spread the love

Related Posts

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top