-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
106 lines (90 loc) · 4.48 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
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<!--jQuery library-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!--Latest compiled and minified JavaScript-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Welcome | Life Style Store</title>
</head>
<body style="padding-top: 50px;">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">LifeStyle Store</a>
<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>
</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" style="margin-right: 3px;"></span>SIGNUP</a></li>
<li><a href="login.html"><span class="glyphicon glyphicon-log-in" style="margin-right: 3px;"></span>LOGIN</a></li>
</ul>
</div>
</div>
</nav>
<div id = "banner_image">
<div class="container">
<center>
<div class="banner_content">
<h1>We sell lifestyle.</h1>
<p>Flat 40% OFF on premium brands </p>
<br/>
<a href="product.html" class="btn btn-danger btn-lg active" target="_blank">Shop Now</a>
</div>
</center>
</div>
</div>
<div class="container" style="margin-top: 50px; margin-bottom: 30px;">
<div class="row text-center" id="item_list">
<div class="col-sm-4">
<a href="product.html#Cameras" style="text-decoration: none;">
<div class="thumbnail">
<img src="6.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="product.html#watches" style="text-decoration: none;">
<div class="thumbnail">
<img src="21.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="product.html#shirts" style="text-decoration: none;">
<div class="thumbnail">
<img src="23.jpg" alt="">
<div class="caption">
<h3>Shirts</h3>
<p>Our exquisite collection of shirts.</p>
</div>
</div>
</a>
</div>
</div>
</div>
<!--Item categories listing end-->
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved | Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>