-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
89 lines (85 loc) · 3.63 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title></title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<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="index.html" class="navbar-brand">Lifestyle store</a>
</div>
<div class="collapse navbar-collapse" id="mynavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="sign.html"><span class="glyphicon glyphicon-user">SignUp</span></a></li>
<li><a href="login.html"><span class="glyphicon glyphicon-log-in">Login</span></a></li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<section class="banner-image">
<div class="container">
<div class="banner-content">
<h1>We sell lifestyle</h1>
<p>Flat 40% OFF on all premium brands</p>
<a href="products.html" class="btn btn-danger btn-lg active">Shop Now</a>
</div>
</div>
</section>
<section>
<div class="container">
<div class="padding-20"></div>
<div class="row">
<div class="col-xs-4 text-center">
<div class="thumbnail">
<a href="products.html"><img src="img/watch.jpg" alt="Watches"></a>
<div class="caption">
<h2>Watches</h2>
<p>Original watches from the best brands.</p>
</div>
</div>
</div>
<div class="col-xs-4 text-center">
<div class="thumbnail">
<a href="products.html"><img src="img/camera.jpg" alt="Camera"></a>
<div class="caption">
<h2>Camera</h2>
<p>Choose among the best available in the world.</p>
</div>
</div>
</div>
<div class="col-xs-4 text-center">
<div class="thumbnail">
<a href="products.html"><img src="img/shirt.jpg" alt="Shirt"></a>
<div class="caption">
<h2>Shirts</h2>
<p>Our exquisite collection of shirts.</p>
</div>
</div>
</div>
</div>
<div class="padding-20"></div>
</div>
</section>
</main>
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved and Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>