-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
76 lines (70 loc) · 2.65 KB
/
about.php
File metadata and controls
76 lines (70 loc) · 2.65 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
<?php
include_once("custom.php");
include_once("header.php");
include_once("navigation.php");
include_once("connection.php");
$sql = "SELECT * FROM `aboutcms` ";
$result = mysqli_query($conn, $sql);
$row = mysqli_fetch_array($result);
?>
<div class="container" id="abtcoverp" style="background-image: url(<?php echo $row["coverphoto"]; ?>);">
<h1 class="col-lg-3 col-lg-offset-3" id="headings">ABOUT</h1>
</div>
<div class="container" align="center">
<br/>
<h1 class="alert"><?php echo $row["aboutheader"]; ?></h1>
<hr/>
<h4 style="font-size: 20px; padding: 30px; line-height: 50px; word-wrap: break-word;"><?php echo $row["aboutcontent"]; ?></h4>
</div>
<div class="container" id="teambg">
<h3 class="" id=""><strong>OUR TEAM</strong></h3>
<h4 class="col-lg-8 col-lg-offset-2" id="">Occassions Made Easy is a startup event management business.
If you are in need of hosting and resources for
your event, we will provide you with everything you need. Be it small-scale
or budget-friendly events, our services range from more and beyond.
Whether it's just a small family reunion at your house or a
"Beauty and the Beast"-inspired 18th birthday bash for
your dalaga, OME Events will always make it fun, memorable and most of all EASY. <br/><br/><br/></h4>
<div class="row">
<div class="column">
<div class="card">
<img src="<?php echo $row["imgteam1"]; ?>" alt="staff1" style="width:50%">
<div class="container1">
<h2><?php echo $row["staff1"]; ?></h2>
<p class="title"><?php echo $row["position1"]; ?></p>
<p><?php echo $row["desc1"]; ?></p>
<p><?php echo $row["email1"]; ?></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="<?php echo $row["imgteam2"]; ?>" alt="staff2" style="width:50%">
<div class="container1">
<h2><?php echo $row["staff2"]; ?></h2>
<p class="title"><?php echo $row["position2"]; ?></p>
<p><?php echo $row["desc2"]; ?></p>
<p><?php echo $row["email2"]; ?></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="<?php echo $row["imgteam3"]; ?>" alt="staff3" style="width:50%">
<div class="container1">
<h2><?php echo $row["staff3"]; ?></h2>
<p class="title"><?php echo $row["position3"]; ?></p>
<p><?php echo $row["desc3"]; ?></p>
<p><?php echo $row["email3"]; ?></p>
</div>
</div>
</div>
</div>
</div>
<div class="fullwidth">
<h2 style="position: absolute; margin:50px;"> A BUSINESS. A FAMILY. </h2>
<?php include 'template.php'; ?>
</div>
<?php
include_once("footer.php");
?>