-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (81 loc) · 3.41 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
<!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" href="bootstrap/css/bootstrap.min.css" type="text/css">
<script type="text/javascript" src="bootstrap/js/jquery-3.4.1.slim.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css" type="text/css"/>
<link rel="stylesheet" href="index.css" type="text/css"/>
</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 class="navbar-brand" href="index.html">Lifestyle Store</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="signup.html"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="login.html"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</nav>
<div id="banner_image">
<center>
<div id="banner_content">
<h2>We sell lifestyle</h2>
<p>Flat 40% OFF on premium brands</p>
<a href="products.html" class="btn btn-danger btn-lg active">shop now</a>
</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 brand.</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>
<footer>
<center>
<div class="container">
<p>Copyright © Lifestyle Store. All Rights Reserved | Contact Us: +91 90000 00000<br>This website is developed by Y.Siva Sai Vardhan Reddy</p>
</div>
</center>
</footer>
</body>
</html>