-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
90 lines (90 loc) · 3.73 KB
/
index.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="" />
<title>Nutritions Store</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- latest compiled and minified CSS -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css">
<!-- jquery library -->
<script type="text/javascript" src="bootstrap/js/jquery-3.2.1.min.js"></script>
<!-- Latest compiled and minified javascript -->
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<!-- External CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div>
<?php
require 'header.php';
?>
<div id="bannerImage">
<div class="container">
<center>
<div id="bannerContent">
<h1>We sell Nutritions and Sports and Energy drinks</h1>
<p>Flat 40% OFF on all premium nutritions brands.</p>
<a href="products.php" class="btn btn-danger">Shop Now</a>
</div>
</center>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-4">
<div class="thumbnail">
<a href="products.php">
<img src="img/drinks.jpg" alt="Drinks">
</a>
<center>
<div class="caption">
<p id="autoResize">Energy and Sports drinks</p>
<p>Choose the best available in the world.</p>
</div>
</center>
</div>
</div>
<div class="col-xs-4">
<div class="thumbnail">
<a href="products.php">
<img src="img/watch.png" alt="whey">
</a>
<center>
<div class="caption">
<p id="autoResize">Whey Protiens</p>
<p>Original whey products.</p>
</div>
</center>
</div>
</div>
<div class="col-xs-4">
<div class="thumbnail">
<a href="products.php">
<img src="img/pills.jpg" alt="Pills">
</a>
<center>
<div class="caption">
<p id="autoResize">Nutrition Pills</p>
<p>Our wide range of Nutrition suite everybody.</p>
</div>
</center>
</div>
</div>
</div>
</div>
<br><br> <br><br><br><br>
<footer class="footer">
<div class="container">
<center>
<p>Copyright © Nutritions Store. All Rights Reserved. | Contact Us: +91 90000 00000</p>
<p>This website is developed by Aakash Kumar</p>
</center>
</div>
</footer>
</div>
</body>
</html>