-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.php
More file actions
69 lines (69 loc) · 2.8 KB
/
index.php
File metadata and controls
69 lines (69 loc) · 2.8 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
<?php
require 'includes/common.php';
if (isset($_SESSION['email'])) { header('location: product.php'); }
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lifestyle Store</title>
<meta charset="UTF-8">
<meta name="description" content="LifeStyle Store India's faishon e-store."/>
<meta name="keywords" content="camera, watches, shirts"/>
<meta name="author" content="Bipul Kumar">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css">
<script type="text/javascript" src="bootstrap/js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<link href="css/index.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<?php
include 'includes/header.php';
?>
<div id="banner_image">
<div class="inner-banner-image">
<center>
<div id="banner_content">
<h1>We sell lifestyle.</h1>
<p>Flat 10% OFF on premium brands</p>
<a href="product.php" class="btn btn-danger btn-lg active">Shop Now</a>
</div>
</center>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<a href="product.php#Cameras" class="thumbnail">
<img src="img/camera.jpg" alt="camera"/>
<div class="caption">
<h3>Cameras</h3>
<p>Choose among the best available in the world.</p>
</div>
</a>
</div>
<div class="col-sm-4">
<a href="product.php#Watches" class="thumbnail">
<img src="img/watch.jpg" alt="watch"/>
<div class="caption">
<h3>Watches</h3>
<p>Original watches from the best brands.</p>
</div>
</a>
</div>
<div class="col-sm-4">
<a href="product.php#Shirts" class="thumbnail">
<img src="img/shirt.jpg" alt="shirt"/>
<div class="caption">
<h3>Shirts</h3>
<p>Our exquisite collection of shirts.</p>
</div>
</a>
</div>
</div>
</div>
<?php
include 'includes/footer.php';
?>
</body>
</html>