-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
594 lines (573 loc) · 30.1 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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:[email protected]&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:[email protected]&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- StyleSheet -->
<link rel="stylesheet" href="styles.css" />
<!-- Animate.css Dependency -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>SoulScents</title>
<!-- JQuery Dependency -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<header>
<div class="navbar">
<!-- Main Navbar -->
<div class="container navbar-flex">
<!-- Navbar Logo -->
<a href="#"><img class="navbar-logo" src="./images/logonotext.png" alt="Navbar Logo"></a>
<!-- Navbar Menu Links -->
<ul class="nav-links" aria-label="Navbar Menu">
<a class="nav-link" href="#landing"><span>Home</span></a>
<a class="nav-link" href="#products"><span>Products</span></a>
<a class="nav-link" href="#about"><span>About</span></a>
<a class="nav-link" href="#footer"><span>Contact</span></a>
</ul>
</div>
<!-- Mobile Hamburger Menu -->
<div class="mobile-menu">
<!-- Toggle Button -->
<div class="toggle-button">
<span class="menu-toggle-bar menu-toggle-bar--top"></span>
<span class="menu-toggle-bar menu-toggle-bar--middle"></span>
<span class="menu-toggle-bar menu-toggle-bar--bottom"></span>
</div>
<!-- Mobile Menu -->
<div class="mobile-menu-links">
<ul class="mobile-menu-flex">
<a class="mobile-menu-link" href="#landing">Home</a>
<a class="mobile-menu-link" href="#products">Products</a>
<a class="mobile-menu-link" href="#about">About</a>
<a class="mobile-menu-link" href="#footer">Contact</a>
</ul>
</div>
</div>
</div>
</header>
<!-- Landing Section -->
<section class="landing-page" id="landing">
<div class="landing-container container">
<!-- Left Hero Section -->
<div class="left-hero">
<h1>Welcome To <br> <div class="gradient-text zoomIn-animation">SoulScents</div></h2>
<p>Experience the Serenity of Nature <br> in <span class="blue-text"><b>Every Scent</b></span> of our Incense</p>
<br>
<div class="buttons">
<a href="#about" class="button">Know About Us</a>
<a href="#products" id="product-button" class="button">Explore Our Products</a>
</div>
</div>
<!-- Right Hero Section -->
<div class="right-hero">
<div class="rotating-text-container">
<p id="rotating-text">quality•durable•reliable•</p>
</div>
<p class="tagline">Symbol Of<br><span class="blue-text">Quality</span></p>
</div>
</div>
</section>
<!-- Wave Transition between Landing Page and Product Page -->
<div class="wave-section">
<svg
class="waves"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28"
preserveAspectRatio="none"
shape-rendering="auto"
>
<defs>
<path
id="gentle-wave"
d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"
/>
</defs>
<g class="parallax">
<use
xlink:href="#gentle-wave"
x="48"
y="0"
fill="rgba(255,255,255,0.7)"
/>
<use
xlink:href="#gentle-wave"
x="48"
y="3"
fill="rgba(255,255,255,0.5)"
/>
<use
xlink:href="#gentle-wave"
x="48"
y="5"
fill="rgba(255,255,255,0.3)"
/>
<use xlink:href="#gentle-wave" x="48" y="7" fill="#fff" />
</g>
</svg>
</div>
<!-- Product Section -->
<section class="products-page" id="products">
<div class="container">
<div class="products-page-heading"><h2>Our Products</h2></div>
<div class="cards-container">
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<p>Product Name</p>
</div>
<div class="card-back">
<h5>Description</h5>
<p>
Experience tranquility with our premium incense sticks, crafted from natural resins and essential oils. Each stick delivers a soothing aroma that enhances relaxation and enriches your space.</p>
<h5>Product Info</h5>
<p>Ingredients: Natural resins, essential oils, and bamboo <br>
Burn Time: Approximately 45 minutes per stick <br>
Scent Options: Lavender, Sandalwood, Jasmine, and Cedar <br>
Quantity: 20 sticks per pack <br>
Packaging: Eco-friendly, recyclable box <br>
Usage: Ideal for meditation, relaxation, and ambiance creation</p>
<h5>How To Place Order</h5>
<p>Contact us at any place given in the footer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about-page" id="about">
<div class="about-page-heading"><h2>About Our Company</h2></div>
<div class="founders">
<div class="founder1 founder"><h5>Akhil Jayan <br> (Founder)</h5></div>
<div class="founder2 founder"><h5>Arjun Jayan <br> (Co-Founder)</h5></div>
</div>
<div class="company-about-card-flex">
<div class="company-about-card">
SoulScents was founded with a deep-seated passion for creating tranquility and balance through the art of incense. Our story began in a quaint village nestled in the heart of India, where our founders, Akhil and Arjun Jayan, were inspired by the rich tradition of incense-making passed down through generations. <br>
In 2010, Akhil and Arjun embarked on a journey to revive the ancient art of crafting incense, combining their heritage with modern techniques to create products that honor traditional values while meeting contemporary needs. They started in a small workshop, meticulously hand-blending natural resins, essential oils, and aromatic herbs to produce incense that truly reflects their dedication to quality and authenticity. <br>
At SoulScents, we believe that incense is more than just a fragrance; it’s an experience that enhances mindfulness and enriches daily life. Our diverse range of scents is designed to cater to various moods and occasions, from calming lavender for relaxation to invigorating sandalwood for focus and clarity. We aim to create moments of peace and reflection in a busy world, helping our customers connect with their inner selves and their surroundings. <br>
As we look to the future, our goal remains clear: to spread the soothing benefits of incense far and wide, enriching lives with every scent. Thank you for being a part of our journey and allowing SoulScents to be a part of your daily rituals.
</div>
</div>
</section>
<!-- Footer/Contact Section -->
<footer id="footer" class="footer">
<div class="footer-up">
<div class="footer-left">
<h4>Let's connect with our socials</h4>
<ul class="wrapper" aria-label="Socials">
<a href="https://www.facebook.com" target="_blank" class="icon facebook">
<span class="tooltip">Facebook</span>
<svg
viewBox="0 0 320 512"
height="1.2em"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"
></path>
</svg>
</a>
<a href="https://www.instagram.com" target="_blank" class="icon instagram">
<span class="tooltip">Instagram</span>
<svg
xmlns="http://www.w3.org/2000/svg"
height="1.2em"
fill="currentColor"
class="bi bi-instagram"
viewBox="0 0 16 16"
>
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"
></path>
</svg>
</a>
</ul>
</div>
<div class="footer-right">
<h4>Get In Touch</h4><br>
+917428730894<br>
+917428723247<br>
<a class="footer-link" target="_blank" href="https://maps.app.goo.gl/" aria-label="Address">Vaishali Industrial Area, Delhi - 110095</a>
</div>
</div>
<div class="footer-down">
<p>© 2024 SoulScents. All rights reserved.</p>
</div>
</footer>
<!-- CircleType.js Dependency for Circular Text -->
<script src="https://cdn.jsdelivr.net/gh/peterhry/[email protected]/dist/circletype.min.js"></script>
<!-- Javascript -->
<script src="script.js"></script>
</body>
</html>