-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
51 lines (38 loc) · 1.36 KB
/
Copy pathindex.php
File metadata and controls
51 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html>
<!-- Pansilu -->
<head>
<title>Ceylon Beverages | Sri Lanka</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
.navigation .home-active {
background-color: #4CAF50;
}
.navigation li a:hover:not(.home-active) {/* Current colour does not change when hover */
background-color: #111;
}
</style>
</head>
<body>
<?php include('includes/header.php') ?>
<div class="row-100">
<img class="banner" src="images/banner1.jpg" width="100%" height="600px" >
</div>
<div class="row-100">
<h1 class="font-white"> Popular products</h1>
</div>
<div class="row-25 bg-white">
<a href="products.php"><img class="tiles" src="images/cocacola.jpg"></a>
</div>
<div class="row-25 bg-white">
<a href="products.php"><img class="tiles" src="images/fanta.jpg"></a>
</div>
<div class="row-25 bg-white">
<a href="products.php"><img class="tiles" src="images/7up.png"></a>
</div>
<div class="row-25 bg-white">
<a href="products.php"><img class="tiles" src="images/sprite.jpg"></a>
</div>
<?php include('includes/footer.php') ?>
</body>
</html>