forked from accakks/Dummy-E-commerce-website-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (77 loc) · 3.08 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
<!DOCTYPE html>
<head>
<!---- The page has a title Lifestyle Store-->
<title>stylish Lifestyle Store</title>
<!---- External css file index.css placed in the folder css is linked-->
<link href="css/newcss.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery/min.js"</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="innerheader">
<a href="#" style="
color:transparent;
color: #9d9d9d;"
"><div class="logo">stylish Lifestyle Store</div></a>
<a href="pages/login.html"style="
color:transparent;
color: #9d9d9d;"><div class="header-link"><span class="glyphicon glyphicon-log-in"></span>Login</div></a>
<a href="pages/signup.html"style="
color:transparent;
color: #9d9d9d;"><div class="header-link"><span class="glyphicon glyphicon-user"></span>Signup</div> </a>
</div>
</div>
<div class="content">
<div id="banner_image">
<div class=“container”>.
<div class="inner-bannerimage">
<div id="banner_content">
<h1> We sell lifestyle </h1>
<p>Flat 40% OFF on premium brands<br><br><br>
<a href="pages/products.html" class =”btn btn-danger
btn-lg active” style="color: #fff; background-color: #c9302c;
border-color: #ac2925;box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
padding: 10px 16px;
font-size: 18px;
border-radius: 6px;">Shop Now</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="items">
<a href="#"><img src="images/camera.jpg" alt="Camera" 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="images/watch.jpg" alt="Watch" 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="images/shirt.jpg" alt="Shirt" class="thumbnail">
<div class="caption">
<h2>Shirts</h2>
<p>Our exquisite collection of shirts</p>
</div>
</a>
</div>
</div>
<div class="footer">
<div class="container" >
<center>Copyright © Lifestyle Store. All Rights Reserved | Contact Us: +91 90000 00000</center>
</div>
</div>
</body>
</html>