-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (66 loc) · 1.82 KB
/
Copy pathindex.html
File metadata and controls
94 lines (66 loc) · 1.82 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Lifestyle store</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<div class="inner-header">
<div class="logo">
<a>Lifestyle Store</a>
</div>
<div class="header-link">
<a>Signup</a>
</div>
<div class="header-link">
<a>Login</a>
</div>
</div>
</header>
<div class="content">
<div class="banner-image">
<div class="inner-banner-image">
<div class="banner_content">
<h1>we sell lifestyle</h1>
<p>flat 40% off on premium brands</p>
<a class="bottom">shop now</a>
</div>
</div>
</div>
<div class="container">
<div class="items">
<a href="#" >
<img src="camera.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="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="shirt.jpg" alt="" class="thumbnail">
<div class="caption">
<h2>Shirts</h2>
<p>our exquisite collections of shirts.</p>
</div>
</a>
</div>
</div>
</div>
<footer>
<p style="text-align:center;">Copyright © Lifestyle Store. All Rights
Reserved | Contact Us: +91 90000 00000</p>
</footer>
</body>
</html>