-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
33 lines (29 loc) · 1.14 KB
/
contact.php
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
<!--Start Contact Us-->
<div class="container mt-5" id="Contact">
<h2 class="text-center mt-6">Contact US</h2>
<div class="row mt-4">
<div class="col-md-8">
<form action="" method="post">
<input type="text" class="form-control" name="name" placeholder="Name">
<br>
<input type="text" class="form-control" name="subject" placeholder="Subject">
<br>
<input type="email" class="form-control" name="email" placeholder="E-mail">
<br>
<textarea class="form-control" name="message" placeholder="How Can We Help You" cols="30"
rows="05"></textarea>
<br>
<input class="btn btn-primary" type="submit" value="Send" name="submit"><br><br>
</form>
</div>
<div class="col-md-4 stripe text-white text-center">
<h4>SMS</h4>
<p>SMS,
Near D-Ground,
Alah-ho Chowk Faisalabd<br />
Phone:+921234567<br />
www.google.com</p>
</div>
</div>
</div>
<!--End Contact Us-->