-
Notifications
You must be signed in to change notification settings - Fork 1
/
aboutus.php
94 lines (86 loc) · 2.5 KB
/
aboutus.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MM Granites</title>
<link rel="icon" type="image/png" href="assets/mmg logo.svg" sizes="16x16">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/css_product.css">
<link rel="stylesheet" type="text/css" href="css/header-footer.css">
<link rel="stylesheet" type="text/css" href="css/aboutus.css">
</head>
<body>
<?php
include 'header.php';
?>
<section class="banner-section" style="background-image: url('assets/img/about.jpg');height:150px ">
<div class="container-fluid" id="product_banner">
<div class="row">
<div class="col-sm-3">
<h1 style="color: white;margin-top:50px">About Us</h1>
<h5 ><a style="color: white;text-decoration: none" href="index.php">Home /</a><a style="color: white;text-decoration: none" href="#">About Us</a></h5>
</div>
</div>
</section>
<section>
<div class="container-fluid">
<div class="jumbo" style="padding: 10px;">
<?php
include 'config.php';
$q="SELECT * FROM `mission` order by `id` desc";
$d=mysqli_query($dbcon,$q);
$res=mysqli_fetch_array($d);
?>
<h4 style="color: #555555;"><strong><?php echo $res['heading'] ?></strong></h4>
</div>
<div class="row">
<div class="col-sm-12 our-mission-text">
<span>
<p><?php echo $res['content']?></p>
</span>
</div>
</div>
</div>
</section>
<section style="margin-top: 20px;">
<div class="container-fluid">
<div class="jumbo">
<h4 style="color: #555555;"><strong>Our Team</strong></h4>
<h5>Pillers of our company</h5>
</div>
</div>
</section>
<section>
<div class="container-fluid">
<div class="row">
<?php
$q1="SELECT * FROM `team`";
$d1=mysqli_query($dbcon,$q1);
while($res1=mysqli_fetch_assoc($d1))
{
?>
<div class="col-sm-4 col-sm-offset-4 team-col">
<figure>
<img src="admin/<?php echo $res1['profile_photo'];?>" class="img img-responsive team-img" style="margin-left:auto;margin-right:auto;">
<figcaption>
<h4 style="font-weight:700;"><?php echo $res1['name'];?></h4>
<p class="post-text">
<?php echo $res1['designation'];?>
</p>
<p class="team-about-text">
<?php echo $res1['qualification'];?>
</p>
</figcaption>
</figure>
</div>
<?php
}
?>
</div>
</div>
</section>
<?php
include 'footer.php';
?>