12345678910111213141516171819202122232425262728293031 |
- @extends('web.layouts.master')
- @section('content')
- <section class="bg-half-170 d-table w-100">
- <div class="container">
- <div class="row align-items-center">
- <div class="col-md-6">
- <div class="title-heading mt-4">
- <h1 class="display-4 fw-bold mb-3">Explore</h1>
- <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>
- </div>
- <div class="subcribe-form mt-4 pt-2">
- <form>
- <input type="email" id="email" name="email" class="border bg-white rounded-pill" required placeholder="Email Address">
- <button type="submit" class="btn btn-pills btn-primary">Get Started</button>
- </form><!--end form-->
- </div>
-
- <div class="form-check mt-3">
- <input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
- <label class="form-check-label" for="flexCheckDefault">I Accept <a href="#" class="text-primary">Terms And Condition</a></label>
- </div>
- </div><!--end col-->
- <div class="col-md-6">
- <img src="images/illustrator/Creativity-bro.svg" alt="">
- </div><!--end col-->
- </div><!--end row-->
- </div><!--end container-->
- </section>
- @endsection
|