-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (47 loc) · 1.49 KB
/
Copy pathcontact.html
File metadata and controls
53 lines (47 loc) · 1.49 KB
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
<!-- Page top section -->
<section class="page-top-section set-bg" style='padding-top: 0px;height:100%;' data-setbg="./frontend/img/page-top-bg.jpg">
<div class="container text-white">
<h2>CONTACT US</h2>
</div>
</section>
<!-- Page top end -->
<!-- Breadcrumb -->
<div class="site-breadcrumb">
<div class="container">
<a href=""><i class="fa fa-home"></i>Home</a>
<span><i class="fa fa-angle-right"></i>Contact us</span>
</div>
</div>
<!-- page -->
<section class="contact-title">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="./frontend/img/contact.jpg" alt="">
</div>
<div class="col-lg-6">
<div class="contact-right">
<div class="section-title">
<h3>Get in touch</h3>
<p>Got a Question? We'd love to hear from you. Send us a message and we'll respond as soon as possible</p>
</div>
<form class="contact-form" method="post" action="contact-form-handler.php">
<div class="row">
<div class="col-md-6">
<input name="name" type="text" placeholder="Your name" required>
</div>
<div class="col-md-6">
<input name="email" type="text" placeholder="Your email" required>
</div>
<div class="col-md-12">
<textarea placeholder="Your message"></textarea>
<button class="site-btn" color="blue">SUBMIT NOW</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- page end -->