-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
74 lines (67 loc) · 2.7 KB
/
index.php
File metadata and controls
74 lines (67 loc) · 2.7 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
<?php
require('includes/common.php');
if (isset($_SESSION['email']))
{
header('location: products.php');
}
?>
<html>
<head>
<title>Welcome | Life Style Store</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="icon" type="image/png" href="images/logo.png">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css" >
<script src="bootstrap/js/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
</head>
<body>
<?php
include('includes/header.php');
?>
<div id="content">
<div id="banner_image">
<div class="container">
<div id="banner_content">
<h1>We Sell Lifestyle</h1>
<p>Flat 40% OFF on premium brands </p>
<a href="products.php">
<button type="button" class="btn btn-danger btn-lg active ">Shop Now</button>
</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="thumbnail">
<img src="images/camera.jpg" alt="camera" class="img-responsive">
<div class="caption details">
<h3>Cameras</h3>
<p>Choose among the best available in the world.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="thumbnail"><img src="images/watch.jpg" alt="watch" class="img-responsive">
<div class="caption details">
<h3>Watches</h3>
<p>Original watches from the best brands</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="thumbnail"><img src="images/shirt.jpg" alt="shirts" class="img-responsive">
<div class="caption details">
<h3>Shirts</h3>
<p>Our collection of Tshirts</p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include('includes/footer.php');
?>
</body>
</html>