-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_1.html
134 lines (134 loc) · 5.52 KB
/
index_1.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<style>
.style_doc
{
position: fixed;
padding: 10px 0;
background-color: #101010;
color:#9d9d9d;
bottom: 0;
width: 100%;
}
#banner_image{
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
color: #f8f8f8;
background-image: url("intro-bg_1.jpg");
background-size: cover;
}
#banner_content{
position: relative;
padding-top: 6%;
padding-bottom: 6%;
margin-top: 12%;
margin-bottom: 12%;
background-color: rgba(0, 0, 0, 0.7);
max-width: 660px;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<title>LifeStyle Store</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</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="index_1.html" class="navbar-brand">LifeStyle Store</a>
</div>
<div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a class="active" href="Sign_Up.html">Sign Up</a></li>
<li><a href="Login_Page.html"><span class="glyphicon glyphicon-log-in"> Login</span></a></li>
</ul>
</div>
</div>
</div>
</nav>
<br>
<br>
<div id="banner_image">
<div id="container">
<div class="row">
<div class="col-xs-offset-3">
<div style="padding-left:0" class="col-xs-12">
<div id="banner_content">
<h1>We sell lifeStyle.</h1>
<br>
<p>Flat 40% OFF on premium brands</p>
<br>
<a href="Products.html">
<button class="btn btn-danger btn-lg active">Shop Now</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="container">
<div class="row text-center">
<div class="col-md-4">
<div class="thumbnail">
<img class="img-responsive" src="7.jpg" alt="Watch" height="500" width="500">
<div class="caption">
<h3>Watches</h3>
<p>Original watches from best brands.</p>
<a href="Products.html">
<button type="button" class="btn-danger btn-block">Shop Now</button>
</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img class="img-responsive" src="1.jpg" alt="Camera" height="500" width="500">
<div class="caption">
<h3>Camera</h3>
<p>Choose among the best available in the world.</p>
<a href="Products.html">
<button type="button" class="btn-danger btn-block">Shop Now</button>
</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img class="img-responsive" src="8.jpg" alt="Shirt" height="500" width="500">
<div class="caption">
<h3>Shirts</h3>
<p>Our extensive collection of shirts.</p>
<a href="Products.html">
<button type="button" class="btn-danger btn-block">Shop Now</button>
</a>
</div>
</div>
</div>
</div>
</div>
<br>
<footer>
<div class="container-fluid style_doc">
<center>Copyright © Lifestyle Store. All Rights Reserved | Contact Us: +91 90000 00000</center>
</div>
</footer>
</body>
</html>