-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
88 lines (70 loc) · 2.52 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
<?php
require("includes/common.php");
if (isset($_SESSION['email'])) {
header('location: products.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome | TrendMart</title>
<link rel="icon" href="img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="bootstrap/style.css" rel="stylesheet">
</head>
<body style="padding-top: 50px;">
<?php
include 'includes/header.php';
?>
<div id="content">
<div id="banner_image">
<div class="container">
<center>
<div id="banner_content">
<h1 style="color:white">BIG SAVING DAYS</h1>
<h2 style="color:red">SALE IS LIVE!</h2>
<p>Land Here for the Biggest Offers</p>
<br />
<a href="products.php" class="btn btn-danger btn-lg active">Shop Now</a>
</div>
</center>
</div>
</div>
<div class="container">
<div class="items">
<a href="kids.php#Kids">
<img src="img/kids_1.jpg" alt="Kids" class="thumbnails">
<div class="caption">
<h3>Kids</h3>
<p>Choose among the best available in the world.</p>
</div>
</a>
</div>
<div class="items">
<a href="women.php#Female">
<img src="img/women_1.jpg" alt="Female" class="thumbnails">
<div class="caption">
<h3>For Her</h3>
<p>Shandaar Price Drop</p>
</div>
</a>
</div>
<div class="items">
<a href="men.php#Male">
<img src="img/men_1.jpg" alt="Male" class="thumbnails">
<div class="caption">
<h3>For Him</h3>
<p>Our exquisite collection of shirts, Pants etc</p>
</div>
</a>
</div>
</div>
</div>
<?php
include 'includes/footer.php';
?>
</body>
</html>