-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoffers.html
105 lines (97 loc) · 3.08 KB
/
offers.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
<!DOCTYPE html>
<html>
<head>
<title>Our Local Shop/offers</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css'>
<link href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<style type="text/css">
*{
margin:0;
padding:0;
}
.container{
width:100%;
background-color: #E9EAEC;
text-align: center;
padding: 25px 8px;
}
section{
margin: 22px 12px;
border:1px solid grey;
border-radius: 25px;
background-color: #FAD02C;
padding: 22px 8px;
}
section:hover{
zoom:1.25;
background-color: #333652;
color:white;
cursor: pointer;
}
</style>
</head>
<body>
<div class="jumbotron jumbotron-fluid mb-0" id="jtron">
<div class="container-fluid" id="jtr" style="height:10em;">
<h1>Welcome to our Local Shop</h1>
<h3>(search variety,shop variety)</h3>
</div>
</div>
<nav class="navbar navbar-expand-md navbar-dark sticky-top navcolor">
<a class="navbar-brand" href="/index.html">Local Shop</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/items.html">Items</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/offers.html">Offers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#contact">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about.html">About Us</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<h1>Hurry up! The offers are ending soon😎</h1>
<section>
<h1>BUY ONE, GET ONE FREE</h1>
<p>This offer is only valid for kids clothes</p>
</section>
<section>
<h1>10% OFF DISCOUNT</h1>
<p>This offer is valid for essential items</p>
</section>
<section>
<h1>GIFT CARDS</h1>
<p>This is available in every product you buy of least price of $25</p>
</section>
<section>
<h1>PROVIDE A GUARANTEE</h1>
<p>This is available for every electronc gadgets</p>
</section>
<section>
<h1>LUCKY COUPONS</h1>
<p>Lucky coupons are also available</p>
</section>
</div>
<footer class=" container-fluid footer">
<div class="footer-copyright text-center py-3">© 2021 Copyright:
<a href="#"> Our Local Shop </a>
</div>
</footer>
</body>
</html>