explore.blade.php 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. @extends('web.layouts.master')
  2. @section('content')
  3. <section class="bg-half-170 d-table w-100">
  4. <div class="container">
  5. <div class="row align-items-center">
  6. <div class="col-md-6">
  7. <div class="title-heading mt-4">
  8. <h1 class="display-4 fw-bold mb-3">Explore</h1>
  9. <p class="para-desc text-muted">Launch your campaign and benefit from our expertise on designing and managing conversion centered bootstrap v5 html page.</p>
  10. </div>
  11. <div class="subcribe-form mt-4 pt-2">
  12. <form>
  13. <input type="email" id="email" name="email" class="border bg-white rounded-pill" required placeholder="Email Address">
  14. <button type="submit" class="btn btn-pills btn-primary">Get Started</button>
  15. </form><!--end form-->
  16. </div>
  17. <div class="form-check mt-3">
  18. <input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
  19. <label class="form-check-label" for="flexCheckDefault">I Accept <a href="#" class="text-primary">Terms And Condition</a></label>
  20. </div>
  21. </div><!--end col-->
  22. <div class="col-md-6">
  23. <img src="images/illustrator/Creativity-bro.svg" alt="">
  24. </div><!--end col-->
  25. </div><!--end row-->
  26. </div><!--end container-->
  27. </section>
  28. @endsection