-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (71 loc) · 3.31 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>LifeStyle |Home</title>
<link rel="stylesheet" href="bootstrap-3.3.7/css/bootstrap.min.css" type="text/css">
<script src="bootstrap-3.3.7/js/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="bootstrap-3.3.7/js/bootstrap.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="extraStyles.css" type="text/css"/>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<div>
<nav class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<div class="navbar-header navbar-brand">
LifeStyle
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a>Home</a></li>
<li><a href="signUp.php?m="><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="login.php?m="><span class="glyphicon glyphicon-log-in"></span> Log In</a></li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container-fluid banner_image container_style">
<div class="col-lg-offset-3">
<div class="banner_content">
<a href="products.php" class="btn btn-danger btn-lg active">Shop Now</a>
<h4>Flat 40% off on selected items*</h4>
</div>
</div>
</div>
<div class="row text-center col-lg-offset-2 ">
<div class="container">
<a href="products.php">
<div class="extra_style container col-md-3 col-sm-6 thumbnail">
<img src="img/shirt.jpg" alt="shirt">
<div class="caption">
<h4>Shirts</h4>
<h6>Our executive collection of shirts.</h6>
</div>
</div>
</a>
<a href="products.php"><div class="extra_style container col-md-3 col-sm-6 thumbnail">
<img src="img/watch.jpg" alt="shirt">
<div class="caption">
<h4>Watches</h4>
<h6>Best brands of watches.</h6>
</div>
</div></a>
<a href="products.php"><div class="extra_style container col-md-3 col-sm-6 thumbnail">
<img src="img/camera.jpg" alt="shirt">
<div class="caption">
<h4>Cameras</h4>
<h6>Shots with wide ranges.</h6>
</div>
</div></a>
</div>
</div>
<footer>
<div class="container">
<p>Copyright © Lifestyle Store. All Rights Reserved| Contact Us: 6304126471 *(T & C applied)</p>
</div>
</footer>
</body>
</html>