-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.txt
53 lines (47 loc) · 2.64 KB
/
contact.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php include "template/header.php" ?>
<!-- Page Header Start -->
<div class="container-fluid page-header">
<h1 class="display-3 text-uppercase text-white mb-3">Contact</h1>
<div class="d-inline-flex text-white">
<h6 class="text-uppercase m-0"><a href="">Home</a></h6>
<h6 class="text-white m-0 px-3">/</h6>
<h6 class="text-uppercase text-white m-0">Contact</h6>
</div>
</div>
<!-- Page Header Start -->
<!-- Contact Start -->
<div class="container-fluid py-6 px-5">
<div class="text-center mx-auto mb-5" style="max-width: 600px;">
<h1 class="display-5 text-uppercase mb-4">Please <span class="text-primary">Feel Free</span> To Contact Us</h1>
</div>
<div class="row gx-0 align-items-center">
<div class="col-lg-6 mb-5 mb-lg-0" style="height: 600px;">
<iframe class="w-100 h-100"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3001156.4288297426!2d-78.01371936852176!3d42.72876761954724!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4ccc4bf0f123a5a9%3A0xddcfc6c1de189567!2sNew%20York%2C%20USA!5e0!3m2!1sen!2sbd!4v1603794290143!5m2!1sen!2sbd"
frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
<div class="col-lg-6">
<div class="contact-form bg-light p-5">
<div class="row g-3">
<div class="col-12 col-sm-6">
<input type="text" class="form-control border-0" placeholder="Your Name" style="height: 55px;">
</div>
<div class="col-12 col-sm-6">
<input type="email" class="form-control border-0" placeholder="Your Email" style="height: 55px;">
</div>
<div class="col-12">
<input type="text" class="form-control border-0" placeholder="Subject" style="height: 55px;">
</div>
<div class="col-12">
<textarea class="form-control border-0" rows="4" placeholder="Message"></textarea>
</div>
<div class="col-12">
<button class="btn btn-primary w-100 py-3" type="submit">Send Message</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<?php include "template/footer.php" ?>