-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
188 lines (177 loc) · 4.42 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html>
<head>
<title>Lifestyle Store</title>
</head>
<body>
<style>
body{
width: 100%;
height: 100%;
margin: 0;
}
a{
text-decoration: none;
background-color: transparent;
color: #ededed;
}
.header{
background-color: #000;
color: rgb(129, 116, 116);
border-color: #080808;
min-height: 50px;
border: 1px solid transparent;
}
.inner-header{
width: 80%;
margin: auto;
}
.logo{
float: left;
height: 50px;
padding: 15px;
font-size: 20px;
font-weight: bold;
}
.header-link{
float: right;
font-size: 14px;
height: 50px;
padding: 15px 15px;
font-size: 16px;
font-weight: bold;
}
.content{
min-height: 600px;
}
.banner-image{
padding-bottom: 50px;
margin-bottom: 20px;
text-align: center;
color: #f8f8f8;
background: url("img1/banner.jpg") no-repeat center;
background-size: cover;
width: 720;
height: 480;
}
.inner-banner-image{
padding-top: 12%;
width: 80%;
margin: auto;
border-radius: 30%;
}
.banner_content{
position: relative;
padding-top: 6%;
padding-bottom: 6%;
overflow: hidden;
margin-bottom: 12%;
background-color: rgba(0, 0, 0, 0.7);
max-width: 660px;
}
.button{
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
padding: 10px 16px;
font-size: 18px;
border-radius: 6px;
}
.container{
width: 90%;
margin: auto;
overflow: hidden;
}
.items{
width: 30%;
display: block;
padding: 4px;
margin-bottom: 20px
line-height: 1.42857143;
border: 1px solid #ddd;
background-color: #fff;
border-radius: 4px;
float :left ;
margin-left: 1%;
}
.thumbnail{
display: block;
max-width: 100%;
height: auto;
}
.caption{
color:#000;
padding:0px 10px 10px;
font-weight: bold;
text-align: center;
}
footer{
background-color: #000;
color:#fff;
font-size:14px;
}
</style>
<div class="header">
<div class="inner-header" >
<div class="logo">
<a href="assinment1.html"> Lifestyle Store </a>
</div>
<div class="header-link">
<a href="signuppage.html"> Sign up </a>
</div>
<div class="header-link">
<a href="loginpage.html"> Login </a>
</div>
</div>
</div>
<div class="content">
<div class="banner-image">
<div class="inner-banner-image">
<center>
<div class="banner_content">
<h1> We sell Lifestyle </h1>
<p> Flat 40% OFF on premium brands </p>
<a href="#" class="button">Shop Now</a>
</div>
</center>
</div>
</div>
</div>
<div class="container">
<div class="items">
<a href="#">
<img src="img1/watch.jpg" alt="" 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="img1/camera.jpg" alt="" class="thumbnail">
<div class="caption">
<h2> Cameras </h2>
<p> Choose amoung the best available in the world.</p>
</div>
</a>
</div>
<div class="items">
<a href="#">
<img src="img1/shirt.jpg" alt="" class="thumbnail">
<div class="caption">
<h2> Shirt </h2>
<p> Our exquisite collection of Shirt </p>
</div>
</a>
</div>
</div>
</div>
<footer>
<div class="container">
<p>“Copyright © Lifestyle Store. All Rights Reserved| Contact Us: 8800000001</p>
</div>
</footer>
</body>
</html>