-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (76 loc) · 3.16 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
<html>
<head>
<title>TODO supply a title</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css">
<script type="text/javascript" src="bootstrap/js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<nav 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 href="#" class="navbar-brand">Lifestyle Store</a>
</div>
<div class="collapse navbar-collapse" id="mynavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="login.html"><span class="glyphicon glyphicon-log-in"></span> Login </a></li>
<li><a href="signup.html"><span class="glyphicon glyphicon-user"></span>Sign Up</a></li>
</ul>
</div>
</div>
</nav>
<div id="banner_image">
<div class="container">
<div id="banner_content">
<h1>We Sell Lifestyle</h1>
<p>Flat 40% OFF on premium brands</p>
<a href="productpage.html" class="btn btn-danger btn-lg-active">Shop Now</a>
</div>
</div>
</div>
<div class="container">
<div class="items">
<a href="#">
<img src="img/watch.jpg" class="thumbnail">
<div class="caption">
<h2>Watches</h2>
<p>Original watches from the best brands</p>
</div>
</a>
</div>
<div class="items">
<a href="#" >
<img src="img/cam1.jpg" alt="" class="thumbnail">
<div class="caption">
<h2>Cameras</h2>
<p>Choose among the best available in the world.</p>
</div>
</a>
</div>
<div class="items">
<a href="#" >
<img src="img/shirt1.jpg" alt="" class="thumbnail">
<div class="caption">
<h2>Shirts</h2>
<p>A1 collection of shirts.</p>
</div>
</a>
</div>
</div>
<div class="footer">
<div class="container">
<center>
<p>Copyright@Lifestyle store.All rights reserved.
Contact us:+919000000000
</center>
</div>
</div>
</body>
</html>