-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (139 loc) · 5.88 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header section-->
<header class="header">
<a href="#" class="logo"> <i class="fa-solid fa-shop"></i> BSale</a>
<nav class="navbar">
<a href="#home">Home</a>
<a href="#products">Products</a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
<a href="#" class="fas fa-shopping-cart"></a>
</div>
<form action="" class="search-form" id="search-product">
<!-- JS Injected -->
</form>
</header>
<!-- Home Section -->
<section class="home" id="home">
<div class="home-slider swiper">
<div class="swiper-wrapper">
<div
class="slider swiper-slide"
style="background: url(public/images/banners/banner1.png) no-repeat;"
>
<div class="content">
<span>2 by the price of 1</span>
<h3>Juices</h3>
<a href="#" class="btn">shop now</a>
</div>
</div>
<div
class="slider swiper-slide"
style="background: url(public/images/banners/banner2.png) no-repeat;"
>
<div class="content">
<span>Up to 40% off</span>
<h3>Wines</h3>
<a href="#" class="btn">shop now</a>
</div>
</div>
<div
class="slider swiper-slide"
style="background: url(public/images/banners/banner3.png) no-repeat;"
>
<div class="content">
<span>Up to 20% off</span>
<h3>Whiskey</h3>
<a href="#" class="btn">shop now</a>
</div>
</div>
<div
class="slider swiper-slide"
style="background: url(public/images/banners/banner4.png) no-repeat;"
>
<div class="content">
<span>Up to 50% off</span>
<h3>Beers</h3>
<a href="#" class="btn">shop now</a>
</div>
</div>
<div
class="slider swiper-slide"
style="background: url(public/images/banners/banner5.png) no-repeat;"
>
<div class="content">
<span>Up to 15% off</span>
<h3>Drinks</h3>
<a href="#" class="btn">shop now</a>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<!-- Product Section -->
<section class="products" id="products">
<h1 class="heading">Available <span>products</span> </h1>
<div class="filter-buttons" id="category-container">
<!-- Js Injected -->
</div>
<div class="box-container" id="product-container">
<!-- Js Injected -->
</div>
</section>
<!-- Footer Section -->
<section class="footer">
<div class="footer-container">
<div class="box">
<h3>About us...</h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quae ea velit non, omnis, nobis aliquam expedita maiores et quia harum impedit eius beatae animi optio dolores explicabo repellat, saepe sed!</p>
</div>
<div class="box">
<h3>Quick links</h3>
<a href="#home"><i class="fas fa-arrow-right"></i> Home</a>
<a href="#products"><i class="fas fa-arrow-right"></i> Products</a>
</div>
<div class="box">
<h3>Categories</h3>
<a href="#"><i class="fas fa-arrow-right"></i> All </a>
<a href="#"><i class="fas fa-arrow-right"></i> New Arrivals</a>
<a href="#"><i class="fas fa-arrow-right"></i> Featured</a>
<a href="#"><i class="fas fa-arrow-right"></i> Special Offer </a>
<a href="#"><i class="fas fa-arrow-right"></i> Best Seller</a>
</div>
<div class="box">
<h3>Extra links</h3>
<a href="#"><i class="fas fa-arrow-right"></i> My account</a>
<a href="#"><i class="fas fa-arrow-right"></i> Recent orders</a>
<a href="#"><i class="fas fa-arrow-right"></i> My favorite list</a>
<a href="#"><i class="fas fa-arrow-right"></i> Wanna sell? </a>
<a href="#"><i class="fas fa-arrow-right"></i> New offers</a>
</div>
</div>
<div class="share">
<a href="#" class="fab fa-facebook"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
<div class="credit">
© Copyright @ 2022
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<script src="src/index.js" type="module"></script>
</body>
</html>