-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (95 loc) · 3.92 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome | Life Style Store</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body style="padding-top: 50px;">
<!--header-->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Lifestyle Store</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="signup.html"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="login.html"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</div>
<!--header-end-->
<!--banner_image-->
<div id="banner_image">
<div class="container">
<center>
<div id="banner_content">
<h1>We sell lifestyle.</h1>
<p>Flat 40% OFF on premium brands </p>
<br/>
<a href="products.html" class="btn btn-danger btn-lg active">Shop Now</a>
</div>
</center>
</div>
</div>
<!--endof banner_image-->
<!--item_listing-->
<div class="container">
<div class="row text-center" id="item_list">
<div class="col-sm-4">
<a href="products.html#cameras" >
<div class="thumbnail">
<img src="img/1.jpg" alt="">
<div class="caption">
<h3>Cameras</h3>
<p>Choose among the best available in the world.</p>
</div>
</div>
</a>
</div>
<div class="col-sm-4">
<a href="products.html#watches" >
<div class="thumbnail">
<img src="img/10.jpg" alt="">
<div class="caption">
<h3>Watches</h3>
<p>Original watches from the best brands.</p>
</div>
</div>
</a>
</div>
<div class="col-sm-4">
<a href="products.html#shirts" >
<div class="thumbnail">
<img src="img/13.jpg" alt="">
<div class="caption">
<h3>Shirts</h3>
<p>Our exquisite collection of shirts.</p>
</div>
</div>
</a>
</div>
</div>
<!--item_listing end-->
</div>
<!--Footer-->
<footer>
<div class="container">
<center>
<p>Copyright © Lifestyle Store. All Rights Reserved | Contact Us: +91 90000 00000</p>
</center>
</div>
</footer>
<!--Footer end-->
</body>
</html>