-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
348 lines (278 loc) · 14.4 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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<!--=============== REMIXICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Halloween</title>
</head>
<body>
<img src="assets/img/shape-bg.png" alt="" class="shape__bg">
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="" class="nav__logo">
<img src="assets/img/logo-skull.png" alt="logo image">
Halloween
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About us</a>
</li>
<li class="nav__item">
<a href="#items" class="nav__link">Items</a>
</li>
<li class="nav__item">
<a href="#party" class="nav__link">Party</a>
</li>
</ul>
<!-- Close button -->
<div class="nav__close" id="nav-close">
<i class="ri-close-line"></i>
</div>
<img src="assets/img/nav-bat.png" alt="nav image" class="nav__img">
</div>
<!-- Toggle button -->
<div class="nav__toggle" id="nav-toggle">
<i class="ri-menu-4-line"></i>
</div>
</nav>
</header>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home section" id="home">
<div class="shape__small"></div>
<div class="shape__big"></div>
<div class="home__container container grid">
<div class="home__data">
<h1 class="home__title">
<span>Halloween</span> Trick Or Treat
<img src="assets/img/stars.png" alt="home image" class="home__title-img-1">
<img src="assets/img/stars.png" alt="home image" class="home__title-img-2">
</h1>
<p class="home__description">
This Halloween, enjoy trick-or-treating
with your friends and spend a terrifying
night under the full moon.
</p>
<a href="" class="button">Explore Now</a>
</div>
<img src="assets/img/home-pumpkin.png" alt="home image" class="home__img">
<img src="assets/img/home-tree1.png" alt="home image" class="home__tree-1">
<img src="assets/img/home-tree2.png" alt="home image" class="home__tree-2">
</div>
</section>
<!--==================== CATEGORY ====================-->
<section class="category section">
<div class="shape__small"></div>
<h2 class="section__title">Choose your <br> Spooky Category</h2>
<div class="category__container container grid">
<div class="category__card">
<img src="assets/img/category-pumpkin.png" alt="category image" class="category__img">
<h3 class="category__title">Pumpkins</h3>
<p class="category__description">
Light up horror pumpkins to scare at night!
</p>
<img src="assets/img/stars.png" alt="" class="category__star">
</div>
<div class="category__card">
<img src="assets/img/category-ghost.png" alt="category image" class="category__img">
<h3 class="category__title">Ghost</h3>
<p class="category__description">
Spooky ghosts to scare in the most haunted houses!
</p>
<img src="assets/img/stars.png" alt="" class="category__star">
</div>
<div class="category__card">
<img src="assets/img/category-witch-hat.png" alt="category image" class="category__img">
<h3 class="category__title">Witch Hat</h3>
<p class="category__description">
The most elegant witch hats you can wear and scare!
</p>
<img src="assets/img/stars.png" alt="" class="category__star">
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="about section" id="about">
<div class="shape__small"></div>
<div class="shape__big"></div>
<div class="about__container container grid">
<div class="about__data">
<h2 class="section__title">About the Night <br> of Terror</h2>
<p class="about__description">
Halloween is celebrated every October 31 at night, walk around the city with your friends and trick or treat, enjoy this celebration under the full moon!
</p>
<a href="" class="button">Know More</a>
</div>
<img src="assets/img/about-scare.png" alt="about image" class="about__img">
</div>
</section>
<!--==================== ITEMS ====================-->
<section class="items section" id="items">
<div class="shape__big"></div>
<h2 class="section__title">Select your <br> lost item</h2>
<div class="items__container container grid">
<article class="items__card">
<img src="assets/img/item-apple.png" alt="items image" class="items__img">
<h3 class="items__name">Candy Apple</h3>
<span class="items__price">$4.99</span>
<button class="items__button">
<i class="ri-heart-3-line"></i>
</button>
</article>
<article class="items__card">
<img src="assets/img/item-broom.png" alt="items image" class="items__img">
<h3 class="items__name">Witch Broom</h3>
<span class="items__price">$12.99</span>
<button class="items__button">
<i class="ri-heart-3-line"></i>
</button>
</article>
<article class="items__card">
<img src="assets/img/item-pumpkin.png" alt="items image" class="items__img">
<h3 class="items__name">Pumpkin</h3>
<span class="items__price">$7.99</span>
<button class="items__button">
<i class="ri-heart-3-line"></i>
</button>
</article>
<article class="items__card">
<img src="assets/img/item-spider.png" alt="items image" class="items__img">
<h3 class="items__name">Spider</h3>
<span class="items__price">$9.99</span>
<button class="items__button">
<i class="ri-heart-3-line"></i>
</button>
</article>
<article class="items__card">
<img src="assets/img/item-witch-hat.png" alt="items image" class="items__img">
<h3 class="items__name">Witch Hat</h3>
<span class="items__price">$15.99</span>
<button class="items__button">
<i class="ri-heart-3-line"></i>
</button>
</article>
</div>
</section>
<!--==================== PARTY ====================-->
<section class="party section" id="party">
<div class="party__container container grid">
<div class="party__data">
<h2 class="section__title">Halloween <br> party 31 October</h2>
<p class="party__description">
Organize a great Halloween party and
enjoy the creepiest night of terror with all
your friends!
</p>
<a href="#" class="button">
Start the Party
</a>
</div>
<div class="party__images">
<img src="assets/img/party-cauldron.png" alt="party image" class="party__img">
<img src="assets/img/stars.png" alt="party image" class="party__star-1">
<img src="assets/img/stars.png" alt="party image" class="party__star-2">
</div>
</div>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer section">
<div class="footer__container container grid">
<div class="shape__small"></div>
<div class="shape__big"></div>
<div>
<a href="" class="footer__logo">
<img src="assets/img/logo-skull.png" alt="logo image">
Halloween
</a>
<p class="footer__description">
Enjoy the spookiest <br> night of your life!
</p>
</div>
<div class="footer__content">
<div>
<h3 class="footer__title">About Us</h3>
<ul class="footer__links">
<li>
<a href="" class="footer__link">About Us</a>
</li>
<li>
<a href="" class="footer__link">Features</a>
</li>
<li>
<a href="" class="footer__link">News & Blog</a>
</li>
</ul>
</div>
<div>
<h3 class="footer__title">Services</h3>
<ul class="footer__links">
<li>
<a href="" class="footer__link">Pricing</a>
</li>
<li>
<a href="" class="footer__link">Discounts</a>
</li>
<li>
<a href="" class="footer__link">Send-A-Gift</a>
</li>
</ul>
</div>
<div>
<h3 class="footer__title">Company</h3>
<ul class="footer__links">
<li>
<a href="" class="footer__link">Blog</a>
</li>
<li>
<a href="" class="footer__link">Celebrations</a>
</li>
<li>
<a href="" class="footer__link">About</a>
</li>
</ul>
</div>
<div>
<h3 class="footer__title">Social Media</h3>
<ul class="footer__social">
<a href="https://www.facebook.com/stewart.ca.8/" target="_blank" class="footer__social-link">
<i class="ri-facebook-circle-fill"></i>
</a>
<a href="https://www.instagram.com/stewart.ca8/" target="_blank" class="footer__social-link">
<i class="ri-instagram-fill"></i>
</a>
<a href="https://twitter.com/Stewart_ca8" target="_blank" class="footer__social-link">
<i class="ri-twitter-fill"></i>
</a>
</ul>
</div>
</div>
<img src="assets/img/footer-tree1.png" alt="footer image" class="footer__tree-1">
<img src="assets/img/footer-tree2.png" alt="footer image" class="footer__tree-2">
</div>
<span class="footer__copy">
© Copyright Stewart. All Rights Reserved
</span>
</footer>
<!--========== SCROLL UP ==========-->
<a href="#" class="scrollup" id="scroll-up">
<i class="ri-arrow-up-line"></i>
</a>
<!--=============== SCROLLREVEAL ===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>