-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
262 lines (245 loc) · 11.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Fonts Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,0,0" />
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/swiper.css" />
<!-- JavaScript -->
<script src="assets/js/swiper.js"></script>
<script src="assets/js/scrollReveal.js"></script>
<script src="assets/js/script.js" defer type="module"></script>
<title>Shopy</title>
</head>
<body>
<!-- ============= Header ============= -->
<header class="header">
<nav class="header__container container">
<div class="header__logo">
<h1><a href="./">shopy.</a></h1>
</div>
<ul class="header__links">
<li class="header__link">
<a href="#home" class="active">home</a>
</li>
<li class="header__link">
<a href="#new">new</a>
</li>
<li class="header__link">
<a href="#shop">shop</a>
</li>
<li class="header__link">
<a href="#trending">trending</a>
</li>
</ul>
<div class="header__btn">
<span style="--i: 0"></span>
<span style="--i: 10"></span>
<span style="--i: 20"></span>
</div>
</nav>
</header>
<!-- ============= Home Section ============= -->
<section class="section home" id="home">
<div class="home__content swiper">
<div class="swiper-wrapper">
<div class="home__slide swiper-slide">
<div class="home__image">
<img src="./assets/images/home1.png" alt="home1" />
</div>
<div class="home__description">
<p class="home__sub-heading">new brand collection</p>
<h1 class="home__heading">awesome designs</h1>
</div>
</div>
<div class="home__slide swiper-slide">
<div class="home__image">
<img src="./assets/images/home2.png" alt="home2" />
</div>
<div class="home__description">
<p class="home__sub-heading">get 50% off</p>
<h1 class="home__heading">modern designs</h1>
</div>
</div>
<div class="home__slide swiper-slide">
<div class="home__image">
<img src="./assets/images/home3.png" alt="home3" />
</div>
<div class="home__description">
<p class="home__sub-heading">new women collection</p>
<h1 class="home__heading">unique designs</h1>
</div>
</div>
</div>
</div>
<a href="#shop" class="home__btn btn shop-btn">shop now</a>
<a href="#new" class="home__btn btn go-down-btn">
<span class="material-symbols-rounded icon">arrow_downward</span>
<p class="circle-text">Explore more</p>
</a>
</section>
<!-- ============= New Section ============= -->
<section class="section new" id="new">
<div class="section__title">
<h1>new arrivals</h1>
</div>
<div class="new__container container">
<div class="new__btns swiper-btns">
<button class="swiper-btn swiper-button-prev btn btn-border btn-border-black" id="arrow-left">
<span class="material-symbols-rounded"> arrow_back_ios_new </span>
</button>
<button class="swiper-btn swiper-button-next btn btn-border btn-border-black" id="arrow-right">
<span class="material-symbols-rounded"> arrow_forward_ios </span>
</button>
</div>
<div class="new__content swiper">
<div class="new__products products swiper-wrapper"></div>
</div>
</div>
</section>
<!-- ============= Shop Section ============= -->
<section class="section shop" id="shop">
<div class="section__title">
<h1>shop</h1>
</div>
<div class="shop__container container">
<div class="shop__content">
<div class="shop__categories">
<button class="shop__category btn btn-border btn-border-black selected" data-category="all">all</button>
<button class="shop__category btn btn-border btn-border-black" data-category="men">men</button>
<button class="shop__category btn btn-border btn-border-black" data-category="women">women</button>
</div>
<div class="shop__products products"></div>
</div>
</div>
</section>
<!-- ============= Brands Section ============= -->
<section class="section brands">
<div class="section__title">
<h1>brands</h1>
</div>
<div class="brands__container container">
<div class="brands__logo">
<img src="./assets/images/brand1.png" alt="Adidas" />
</div>
<div class="brands__logo">
<img src="./assets/images/brand2.png" alt="Louis Vuitton" />
</div>
<div class="brands__logo">
<img src="./assets/images/brand3.png" alt="The North Face" />
</div>
<div class="brands__logo">
<img src="./assets/images/brand4.png" alt="Nike" />
</div>
<div class="brands__logo">
<img src="./assets/images/brand5.png" alt="Reebok" />
</div>
</div>
</section>
<!-- ============= Trending Section ============= -->
<section class="section trending" id="trending">
<div class="section__title">
<h1>what's trending</h1>
</div>
<div class="trending__container container">
<div class="trending__content swiper">
<div class="trending__products swiper-wrapper"></div>
</div>
</div>
</section>
<!-- ============= Subscribe Section ============= -->
<section class="section subscribe">
<div class="section__title">
<h1>newsletter</h1>
</div>
<div class="subscribe__container container">
<div class="subscribe__text">
<p>subscribe to our newsletter to get what's new in products</p>
</div>
<form class="form" autocomplete="off">
<input type="text" class="form__input" name="email" id="email" placeholder="Subscribe" />
<button type="submit" class="form__btn btn btn-border btn-border-white">subscribe</button>
</form>
</div>
</section>
<!-- ============= Footer ============= -->
<footer class="footer">
<div class="footer__container container">
<div class="footer__col">
<div class="footer__logo">
<h1>
<a href="./">shopy.</a>
</h1>
</div>
<div class="footer__description">
<p>It was found to sell the best products from the most popular brands in the world.</p>
</div>
</div>
<div class="footer__col">
<div class="footer__title">
<h3>company</h3>
<ul class="footer__links">
<li class="footer__link"><a href="#home">Home</a></li>
<li class="footer__link"><a href="#new">New</a></li>
<li class="footer__link"><a href="#shop">Shop</a></li>
<li class="footer__link"><a href="#trending">Trending</a></li>
</ul>
</div>
</div>
<div class="footer__col">
<div class="footer__title">
<h3>information</h3>
<ul class="footer__links">
<li class="footer__link">
<a href="#">
<span class="material-symbols-rounded"> location_on </span>
<p>Jordan, Amman, Mecca St.</p>
</a>
</li>
<li class="footer__link">
<a href="#">
<span class="material-symbols-rounded"> schedule </span>
<p>
Saturday - Thursday <br />
9AM - 12PM
</p>
</a>
</li>
<li class="footer__link">
<a href="tel:+12334567775">
<span class="material-symbols-rounded"> call </span>
<p>+962 123 456 789</p>
</a>
</li>
<li class="footer__link">
<a href="mailto:[email protected]">
<span class="material-symbols-rounded"> mail </span>
<p>[email protected]</p>
</a>
</li>
</ul>
</div>
</div>
<div class="footer__col">
<div class="footer__title">
<h3>social media</h3>
</div>
<ul class="footer__links">
<li class="footer__link"><a href="">Inestagram</a></li>
<li class="footer__link"><a href="">Facebook</a></li>
<li class="footer__link"><a href="">Whatsapp</a></li>
<li class="footer__link"><a href="">Twitter</a></li>
</ul>
</div>
</div>
<div class="footer__copyRight">
<p>© 2023 <span>CodingWeb</span> All Rights Reserved</p>
</div>
</footer>
<!-- ============= Scroll UP ============= -->
<button class="scroll-up btn btn-border btn-border-black"><span class="material-symbols-rounded"> arrow_upward </span></button>
</body>
</html>