-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfacilities.php
76 lines (60 loc) · 2.49 KB
/
facilities.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
<!DOCTYPE html>
<html>
<head>
<title>About | Ceylon Beverages</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
.navigation .facilities-active {
background-color: #4CAF50;
}
.navigation li a:hover:not(.facilities-active) {/* Current colour does not change when hover */
background-color: #111;
}
</style>
</head>
<body>
<?php include('includes/header.php') ?>
<div class="row-100 div-c bg-green">
<h1>Facilities</h1>
</div>
<div class="row-25">
<img src="images/logo.png" class="tiles">
<img src="images/building.jpg" class="tiles" width="250px">
</div>
<div class="row-75">
<p>
Ceylon Beverages PVT LTD, Established in 1996, the only dealer in Sri Lanka for all types of beverages only. If anyone wants to purchase beverages in a large quantity or sell beverages in a large quantity for any occasions, Ceylon Beverages is the platform to do so.
<br>
Our website is a platform between various vendors and customers who are in need for beverages in bulk. Our website allows vendors to add the beverages that each vendor is capable of providing in bulk. Customers can view the relevant amounts and immediately buy the relevant product and quantity.
Our platform manages all the details about vendors and customers and their products.
</p>
</div>
<div class="row-100 main p-t-0">
<hr>
<div class="row">
<div class="column">
<div class="content">
<img src="images/d1.jpg" style="width:100%">
<h3>Managing Director</h3>
<p>Mr. Emanuel Johnson</p>
</div>
</div>
<div class="column">
<div class="content">
<img src="images/d2.jpg" style="width:100%">
<h3>External director</h3>
<p>Mr. Jack Edward</p>
</div>
</div>
<div class="column">
<div class="content">
<img src="images/d4.jpg" style="width:100%">
<h3>Director</h3>
<p>Mr. Rajitha Fernando</p>
</div>
</div>
</div>
</div>
<?php include('includes/footer.php') ?>
</body>
</html>