-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
138 lines (131 loc) · 5.15 KB
/
index.php
File metadata and controls
138 lines (131 loc) · 5.15 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bismillah Fabrics</title>
<?php include_once'inc/head.php' ?>
</head>
<body>
<!----------- Navigation-Bar ----------->
<?php include_once 'inc/nav.php'; ?>
<!---------- Navigation-Bar ---------->
<!---------- Slider ---------->
<section>
<div id="slider">
<div id="headerSlider" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#headerSlider" data-slide-to="0" class="active"></li>
<li data-target="#headerSlider" data-slide-to="1"></li>
<li data-target="#headerSlider" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/001.jpg" class="d-block img-fluid" alt="..."><!-- <div class="carousel-caption">
<h5>How To Make A Website</h5>
</div> -->
</div>
<div class="carousel-item">
<img src="img/002.jpg" class="d-block img-fluid" alt="..."><!-- <div class="carousel-caption">
<h5>Create A Responsive Website</h5>
</div> -->
</div>
<div class="carousel-item">
<img src="img/003.jpg" class="d-block img-fluid" alt="..."><!-- <div class="carousel-caption">
<h5>Design A Business Site</h5>
</div> -->
</div>
</div>
<a class="carousel-control-prev" href="#headerSlider" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#headerSlider" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!---------- Slider ---------->
<!---------- ABOUT SECTION ---------->
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-5">
<img src="img/ceo.jpg" alt="Chief Executive">
<a href="about.php"><h2>Chief Executive</h2></a>
</div>
<div class="col-md-7">
<h1>ABOUT US</h1>
<p>Bismillah Fabrics is Manufacturer and Exporter in textile fabrics, our aim is to ensure high quality with customer satisfaction, our strategy lies in effective and efficient execution of client’s orders</p>
<a href="about.php">Read More...</a>
</div>
</div>
</div>
</section>
<!---------- ABOUT SECTION ---------->
<!----------- BG-IMG ----------->
<section id="bg-img">
<div class="bg">
<div class="container text-center">
<h1>WHY BISMILLAH FABRICS?</h1>
<p>At Bismillah Fabrics, We are committed to offer better social conditions to our employees. We believe that a healthy and safe work results yields a good output. Here at Bismillah Fabrics we pride ourselves on our quality checking procedure in department of Weaving.
<br><br>
Bismillah Fabrics is Manufacturer and Exporter in textile fabrics, our aim is to ensure high quality with customer satisfaction, our strategy lies in effective and efficient execution of client’s orders</p>
<a href="#contact"><button class="btn btn-primary">CONTACT</button></a>
</div>
</div>
</section>
<!----------- BG-IMG ----------->
<!---------- OUR MANUFACTURING ---------->
<section id="manufacturing">
<div class="container text-center">
<h1>OUR MANUFACTURING</h1>
<div class="row">
<div class="col-md-4 mr-auto">
<div class="bx-1">
<img src="img/weaving.jpg" height="300px" width="300px" class="sulzer img img-responsive img-fluid" alt="SULZER LOOMS">
<h3>SULZER LOOMS</h3>
</div>
</div>
<div class="col-md-4 mr-auto">
<div class="bx-2">
<img src="img/dropper.png" height="300px" width="300px" class="img img-responsive img-fluid" alt="SULZER LOOMS">
<h3>AUTO POWER,<br> AUTO DROPER</h3>
</div>
</div>
<div class="col-md-4 mr-auto">
<div class="bx-3">
<img src="img/frames.png" height="300px" width="300px" class="img img-responsive img-fluid" alt="SULZER LOOMS">
<h3>INSPECTION FRAMES</h3>
</div>
</div>
<a href="manufacturing.php"><button class="btn btn-primary" id="btn">READ MORE</button></a>
</div>
</div>
</section>
<!---------- OUR MANUFACTURING ---------->
<!----------- CALLBACK SECTION ----------->
<section id="callback">
<div class="cntainer">
<div class="quote">
<h1>REQUEST A CALLBACK</h1>
<h4>We know you are busy so let one of our friendly staff call you back</h4>
<center>
<a href="contact-page.php"><button class="btn btn-success" id="org">ORGANIZE A TIME</button></a>
</center>
</div>
</div>
</section>
<!----------- CALLBACK SECTION ----------->
<!---------- CONTACT FORM SECTION ---------->
<div id="contact">
<?php include_once'inc/contact-form.php' ?>
</div>
<!---------- CONTACT FORM SECTION ---------->
<!------------- FOOTER ------------->
<?php include_once'inc/footer.php' ?>
<!------------- FOOTER ------------->
<!--------- SCRIPT SECTION --------->
<?php include_once'inc/script-tags.php' ?>
</body>
</html>