-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
276 lines (232 loc) · 11.7 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ===== BOXICONS ===== -->
<link href='https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css' rel='stylesheet'>
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="css/styles.css">
<title>Fashion store Website</title>
</head>
<body>
<!--===== HEADER =====-->
<header class="l-header">
<nav class="nav bd-grid">
<div>
<a href="" class="nav__logo">SARA</a>
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link active">Home</a></li>
<li class="nav__item"><a href="#featured" class="nav__link">Featured</a></li>
<li class="nav__item"><a href="#new" class="nav__link">New</a></li>
<li class="nav__item"><a href="#subscribed" class="nav__link">Subscribed</a></li>
</ul>
</div>
<div>
<i class="bx bx-cart nav__cart"></i>
<i class="bx bx-menu nav__toggle" id="nav-toggle"></i>
</div>
</nav>
</header>
<main class="l-main">
<!--===== HOME =====-->
<section class="home" id="home">
<div class="home__container bd-grid">
<div class="home__data">
<h1 class="home__title">NEW <br><span>ARRIVALS</span></h1>
<a href="#featured" class="button">GO SHOPPING</a>
</div>
<img src="img/home.png" class="home__img" alt="">
</div>
</section>
<!--===== COLLECTION =====-->
<section class="collection section">
<div class="collection__container bd-grid">
<div class="collection__box">
<img src="img/backpackMan.png" alt="" class="collection__img">
<div class="collection__data">
<h2 class="collection__title"><span class="collection__subtitle">Men</span><br>Backpack</h2>
<a href="#" class="collection__view">View collection</a>
</div>
</div>
<div class="collection__box">
<div class="collection__data">
<h2 class="collection__title"><span class="collection__subtitle">Women</span><br>Backpack</h2>
<a href="#" class="collection__view">View collection</a>
</div>
<img src="img/backpackWoman.png" alt="" class="collection__img">
</div>
</div>
</section>
<!--===== FEATURED PRODUCTS =====-->
<section class="featured section" id="featured">
<h2 class="section-title">FEATURED PRODUCTS</h2>
<a href="#" class="section-all">View All</a>
<div class="featured__container bd-grid">
<div class="featured__product">
<div class="featured__box">
<div class="featured__new">NEW</div>
<img src="img/feature1.png" class="featured__img" alt="">
</div>
<div class="featured__data">
<h3 class="featured__name">Headphone One Black</h3>
<span class="featured__price">$29</span>
</div>
</div>
<div class="featured__product">
<div class="featured__box">
<div class="featured__new">NEW</div>
<img src="img/feature2.png" class="featured__img" alt="">
</div>
<div class="featured__data">
<h3 class="featured__name">Speaker Beats Pill</h3>
<span class="featured__price">$199</span>
</div>
</div>
<div class="featured__product">
<div class="featured__box">
<div class="featured__new">NEW</div>
<img src="img/feature3.png" class="featured__img" alt="">
</div>
<div class="featured__data">
<h3 class="featured__name">Apple Air Pods</h3>
<span class="featured__price">$122</span>
</div>
</div>
<div class="featured__product">
<div class="featured__box">
<div class="featured__new">NEW</div>
<img src="img/feature4.png" class="featured__img" alt="">
</div>
<div class="featured__data">
<h3 class="featured__name">Smartwatch F9 Negro</h3>
<span class="featured__price">$99</span>
</div>
</div>
</div>
</section>
<!--===== OFFER =====-->
<section class="offer section">
<div class="offer__bg">
<div class="offer__data">
<h2 class="offer__title">Special Offer</h2>
<p class="offer__description">Special offers discounts for women this week only</p>
<a href="#" class="button">SHOP NOW</a>
</div>
</div>
</section>
<!--===== NEW ARRIVALS =====-->
<section class="featured section" id="new">
<h2 class="section-title">NEW ARRIVALS</h2>
<a href="#" class="section-all">View All</a>
<div class="new__container bd-grid">
<div class="new__box">
<img src="img/new1.png" alt="" class="new__img">
<div class="new__link">
<a href="#" class="button">VIEW PRODUCT</a>
</div>
</div>
<div class="new__box">
<img src="img/new2.png" alt="" class="new__img">
<div class="new__link">
<a href="#" class="button">VIEW PRODUCT</a>
</div>
</div>
<div class="new__box">
<img src="img/new3.png" alt="" class="new__img">
<div class="new__link">
<a href="#" class="button">VIEW PRODUCT</a>
</div>
</div>
<div class="new__box">
<img src="img/new4.png" alt="" class="new__img">
<div class="new__link">
<a href="#" class="button">VIEW PRODUCT</a>
</div>
</div>
<div class="new__box">
<img src="img/new5.png" alt="" class="new__img">
<div class="new__link">
<a href="#" class="button">VIEW PRODUCT</a>
</div>
</div>
<div class="new__box">
<img src="img/new6.png" alt="" class="new__img">
<div class="new__link">
<a href="#" class="button">VIEW PRODUCT</a>
</div>
</div>
</div>
</section>
<!--===== NEWSLETTER =====-->
<section class="newsletter section" id="subscribed">
<div class="newsletter__container bd-grid">
<div class="newsletter__subscribed">
<h2 class="section-title">OUR NEWSLETTER</h2>
<p class="newsletter__description">Promotion new products and sales. Directly to your inbox.</p>
<form action="" class="newsletter__form">
<input type="text" class="newsletter__input" placeholder="Enter your email">
<a href="#" class="button">SUBSCRIBE</a>
</form>
</div>
</div>
</section>
<!--===== SPONSORS =====-->
<section class="sponsors section">
<div class="sponsors__container bd-grid">
<div class="sponsors__logo">
<img src="img/logo1.png" alt="">
</div>
<div class="sponsors__logo">
<img src="img/logo2.png" alt="">
</div>
<div class="sponsors__logo">
<img src="img/logo3.png" alt="">
</div>
<div class="sponsors__logo">
<img src="img/logo4.png" alt="">
</div>
</div>
</section>
</main>
<!--===== FOOTER =====-->
<footer class="footer section">
<div class="footer__container bd-grid">
<div class="footer__box">
<h3 class="footer__title">SARA</h3>
<p class="footer__deal">Products store</p>
<a href="#"><img src="img/footerstore1.png" alt="" class="footer__store"></a>
<a href="#"><img src="img/footerstore2.png" alt="" class="footer__store"></a>
</div>
<div class="footer__box">
<h3 class="footer__title">EXPLORE</h3>
<ul>
<li><a href="#" class="footer__link">Home</a></li>
<li><a href="#" class="footer__link">Featured</a></li>
<li><a href="#" class="footer__link">New</a></li>
<li><a href="#" class="footer__link">Subscribe</a></li>
</ul>
</div>
<div class="footer__box">
<h3 class="footer__title">OUR SERVICES</h3>
<ul>
<li><a href="#" class="footer__link">Pricing</a></li>
<li><a href="#" class="footer__link">Free Shipping</a></li>
<li><a href="#" class="footer__link">Gift Cards</a></li>
</ul>
</div>
<div class="footer__box">
<h3 class="footer__title">FOLLOW</h3>
<a href="#" class="footer__social"><i class='bx bxl-facebook-square'></i></a>
<a href="#" class="footer__social"><i class='bx bxl-instagram-alt'></i></a>
<a href="#" class="footer__social"><i class='bx bxl-twitter'></i></a>
</div>
</div>
<p class="footer__copy">© 2022 copyright all rights reserved.</p>
</footer>
<!--===== MAIN JS =====-->
<script src="js/main.js"></script>
</body>
</html>