-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-page.php
More file actions
111 lines (101 loc) · 3.14 KB
/
contact-page.php
File metadata and controls
111 lines (101 loc) · 3.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Contact Us</title>
<?php include_once'inc/head.php' ?>
</head>
<body>
<?php include_once 'inc/nav.php'; ?>
<section id="c-p-form">
<div id="bg">
<div class="container">
<div class="row">
<div class="col-md-8">
</div>
<div class="col-md-4" id="col-4">
<section id="contact">
<center><h2>CONTACT US</h2></center>
<form class="contact-form">
<div class="form-group">
<lable>Full Name (Required)</lable><input class="form-control" type="text" placeholder="Your Name" >
</div>
<div class="form-group">
<lable>Email (Required)</lable><input class="form-control" type="text" placeholder="Your Email ">
</div>
<div class="form-group">
<lable>Your Phone Number</lable><input class="form-control" type="number" placeholder="Your Phone Number">
</div>
<div class="form-group">
<label>Your Message</label><textarea class="form-control" placeholder="Type Your Message" rows="5"></textarea>
</div>
<div class="check">
<label><input type="checkbox" > Yes, I agree with Terms and Conditoins</label>
</div>
<button id="sbmt" type="submit" class="btn btn-primary">SUBMIT</button>
</form>
<!------- SOCIAL ICONS ------->
<center><h2>FOLLOW US</h2></center>
<div class="row text-center">
<div class="col-md-6">
<a href="#">
<i class="fa fa-facebook r1"></i>
</a>
</div>
<div class="col-md-6">
<a href="#">
<i class="fa fa-whatsapp r1"></i>
</a>
</div>
<div class="col-md-6">
<a href="#">
<i class="fa fa-instagram r2"></i>
</a>
</div>
<div class="col-md-6">
<a href="#">
<i class="fa fa-twitter r2"></i>
</a>
</div>
<div class="col-md-6">
<a href="#">
<i class="fa fa-youtube r3"></i>
</a>
</div>
<div class="col-md-6">
<a href="#">
<i class="fa fa-linkedin r3"></i>
</a>
</div>
</div>
<!------- SOCIAL ICONS ------->
<!-- ADDRESS SECTION -->
<div class="info text-center">
<h3>Haleem Akhtar</h3>
<h5>Chief Executive</h5>
<h5>Executive Member the Faisalabad</h5>
<h5>Chamber of Commerce & Industries</h5>
<h3>Hamad Haleem</h3>
<h5>Managing Director</h5>
<h3>Address</h3>
<h5>Al-Mustafa Centre 3rd Floor, Off. # 4-5 Montgomery Bazar Faisalabad, Pakistan.</h5>
<h3>Email Address:</h3>
<h5>bffsd@fsd.comsats.net.pk</h5>
<h5>info@bismillahfabrics.com.pk</h5>
<h3>Phone Numbers</h3>
<h5>Ph: +92-41-2631300-2638100</h5>
<h5>Mills: +92-41-2699756-2699779</h5>
<h5>Mob: +92-300-8663619</h5>
<h5>Fax: +92-41-2631900</h5>
</div>
<!----- ADDRESS SECTION ----->
</div>
</section>
</div>
</div>
</div>
</div>
</section>
<?php include_once'inc/footer.php' ?>
<?php include_once'inc/script-tags.php' ?>
</body>
</html>