-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (73 loc) · 2.38 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
<!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>
<title>Lifestyle Store</title>
<link rel="stylesheet" type="text/css" href="index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="header">
<div class="inner-header">
<div class="logo">
<a href="index.html">Lifestyle Store</a>
</div>
<div class="header-link">
<a href="#">login</a>
</div>
<div class="header-link">
<a href="#">Sign up</a>
</div>
</div>
</div>
<div class="content">
<div class="banner-image">
<center>
<div class="inner-banner-image">
<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>
</div></center>
</div>
<div class="container">
<div class="items">
<a href="#"><img src="img/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="img/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="img/shirt.jpg" alt="" class="thumbnail">
<div class="caption">
<h2>Shirts</h2>
<p>Our exquisite collection of shirts.</p>
</div>
</a>
</div>
</div>
</div>
<footer>
<div class="container">
<p>Copyright © Lifestyle Store. All Rights
Reserved | Contact Us: +91 90000 00000</p>
</div>
</footer>
</body>
</html>