-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
586 lines (551 loc) · 20.2 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
<!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>SHIVANJALI SOCIETY ~ A Non - Governmental Organization</title>
<!-- Font Awesome Link -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Montserrat:wght@300&family=Open+Sans:wght@700&family=Zen+Kurenaido&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.1.1/assets/owl.carousel.min.css"
/>
<link
rel="stylesheet"
href="https://themes.audemedia.com/html/goodgrowth/css/owl.theme.default.min.css"
/>
<!-- aos -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- aos -->
<!-- favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/favicon/site.webmanifest" />
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<!--???---------------------------------???-->
<!--???---------------------------------???-->
<!--!!!! DO NOT ADD ANYTHING BELOW !!!!-->
<!--!!!! THIS COMMENT.... THIS CAN !!!!-->
<!--!!!! BE DANGEROUS FOR THE CODE. !!!!-->
<!--???---------------------------------???-->
<!--???---------------------------------???-->
<nav class="main_header">
<div class="logo">
<img src="./images/Shivanjali_Logo.png" alt="Shivanjali NGO Logo" />
</div>
<div class="hamburger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<ul class="nav-links">
<li><a href="./">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./work.html">What we do</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</nav>
<!--???---------------------------------???-->
<!--???---------------------------------???-->
<!--!!!! DO NOT ADD ANYTHING ABOVE !!!!-->
<!--!!!! THIS COMMENT.... THIS CAN !!!!-->
<!--!!!! BE DANGEROUS FOR THE CODE. !!!!-->
<!--???---------------------------------???-->
<!--???---------------------------------???-->
<!--???--------------------------------???-->
<!--???--------------------------------???-->
<!--!!!! ADD YOUR CODE BELOW THIS !!!!-->
<!--!!!! COMMENT ONLY. !!!!-->
<!--???--------------------------------???-->
<!--???--------------------------------???-->
<!-- Slider Start -->
<section class="slider-section">
<div id="slider">
<div class="slide">
<img src="./images/index-pg/slider-img-1.png" alt="Shiksha Kit ~ Shivanjali" />
</div>
<div class="slide">
<img src="./images/index-pg/slider-img-2.png" alt="Food Drive ~ Shivanjali" />
</div>
<div class="slide">
<img src="./images/index-pg/slider-img-3.png" alt="Clothes Drive ~ Shivanjali" />
</div>
</div>
<div id="dots-con">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
</section>
<!-- Slider End -->
<!-- 4 Cards Start -->
<section class="cards" id="section-separator-3">
<div class="card" data-aos="flip-right" data-aos-duration="1700">
<div class="card-image">
<img src="./images/index-pg/feed-img.png" alt="Feed the Needy" />
</div>
<div class="card-content">
<h1>FEED THE NEEDY</h1>
<h4>Let us fight hunger together</h4>
<a href="#">Read More</a>
</div>
</div>
<div class="card" data-aos="flip-right" data-aos-duration="2000">
<div class="card-image">
<img src="./images/index-pg/knowledge-img.png" alt="Knowledge is never lost" />
</div>
<div class="card-content">
<h1>KNOWLEDGE IS NEVER LOST</h1>
<h4>A book for every child</h4>
<a href="#">Read More</a>
</div>
</div>
<div class="card" data-aos="flip-right" data-aos-duration="2000">
<div class="card-image">
<img src="./images/index-pg/donate-img.png" alt="Donate a Blanket" />
</div>
<div class="card-content">
<h1>DONATE A BLANKET</h1>
<h4>It is better to donate than accumulate</h4>
<a href="#">Read More</a>
</div>
</div>
<div class="card" data-aos="flip-right" data-aos-duration="2000">
<div class="card-image">
<img src="./images/index-pg/happinesskit-img.png" alt="Happiness Kit" />
</div>
<div class="card-content">
<h1>HAPPINESS KIT</h1>
<h4>Donate School Supply</h4>
<a href="#">Read More</a>
</div>
</div>
</section>
<!-- 4 Cards End -->
<!-- About Section Starts -->
<section class="about-page">
<div class="about" id="section-separator">
<div class="about-img" data-aos="flip-down" data-aos-duration="2000">
<img src="./images/index-pg/whatIsShivanjali-img.png" alt="What is Shivanjali?" />
</div>
<div
class="about-content"
data-aos="fade-down"
data-aos-duration="2000"
>
<h1 class="headingMain">What is Shivanjali?</h1>
<p>
Shivanjali is a leading Non-profit welfare functioning towards
Empowering youth evolution. Shivanjali trusts that effervescent,
empowered and earnest young people hold the power to change the
world to a better place if the latter is enlightened with a guided
call to action. The organization works with the young blood who have
eager to serve the community for the greater future and it also
helps them to ensure their self-development contribute to social
change through various campaigns, workshops, training, exploration,
and activities.
</p>
<hr />
</div>
</div>
<div class="about" id="section-separator-1">
<div class="about-content" data-aos="fade-down" data-aos-duration="2000">
<h1 class="headingMain rightAlignHeading">How did we start?</h1>
<p class="rightAlign">
In 2019, we started an education project, which was focused on
distributing food to local schools. The next step in this project
was the 'Summer Break Programme 2020', which included various
activities such as drama, music, and dance. During the 15-day event,
which ended on March 27, 2020, we distributed clothes and meals to
over 500 children in 15 local slums. In the following 18 days,
around 120 ration kits were distributed in Jhotwara and Vaishali
Nagar. These included rice, wheat, moong dal, oil, and soap. As
well, we had a team of over 50 volunteers who helped in identify
potential donors in India.
</p>
<hr />
</div>
<div class="about-img" data-aos="flip-down" data-aos-duration="2000">
<img src="./images/index-pg/howDidWeStart-img.png" alt="How did we start?" />
</div>
</div>
<div class="about" id="section-separator-2">
<div class="about-img" data-aos="flip-down" data-aos-duration="2000">
<img src="./images/index-pg/whenDidItBegan-img.png" alt="When did it began?" />
</div>
<div
class="about-content"
data-aos="fade-down"
data-aos-duration="2000"
>
<h1 class="headingMain">When did it began?</h1>
<p>
Shivanjali Society is the group of the youth of India which
influences the betterment of children who are not able to reach the
essentialism of Education. To serve such aims for the children, the
Shivanjali Society has established Shivanjali Shiksha Center. We
also run hunger eradication drives every second Sunday of each
month. This drive provides a nutritious meal to needy people that
can help to feel their empty belly. Shivanjali focuses on the
creation of a healthy mind and a perfect body that will help to
decide the future of the country. In addition, during Winter we
organize a winter kit donation campaign to donate a kit consisting
of essential warm clothes such as a pair of socks, gloves, and one
blanket.
</p>
<hr />
</div>
</div>
</section>
<!-- About Section Ends -->
<!-- Testimonial Section Starts -->
<section class="testimonial" data-aos="fade-down" data-aos-duration="1000">
<div class="container">
<h1><q>A word from our Contributors</q></h1>
<div class="row">
<div class="col-sm-12">
<div id="customers-testimonials" class="owl-carousel">
<div class="item">
<div class="shadow-effect">
<img
class="img-circle"
src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt=""
/>
<p>
<q>
Great approach 10/10 would donate again for food donation
</q>
</p>
</div>
<div class="testimonial-name">Aditya Kumar</div>
</div>
<div class="item">
<div class="shadow-effect">
<img
class="img-circle"
src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt=""
/>
<p>
<q>
I am so delighted that Shivanjali kept me updated
throughout the journey.
</q>
</p>
</div>
<div class="testimonial-name">Raju Rastogi</div>
</div>
<div class="item">
<div class="shadow-effect">
<img
class="img-circle"
src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt=""
/>
<p>
<q>
Loved the volunteers and would recommend to my friends and
family and urge them to donate
</q>
</p>
</div>
<div class="testimonial-name">Payal</div>
</div>
<div class="item">
<div class="shadow-effect">
<img
class="img-circle"
src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt=""
/>
<p>
<q>
I trust Shivanjali and I will donate in future as well.
</q>
</p>
</div>
<div class="testimonial-name">Anjali Sen</div>
</div>
<div class="item">
<div class="shadow-effect">
<img
class="img-circle"
src="http://themes.audemedia.com/html/goodgrowth/images/testimonial3.jpg"
alt=""
/>
<p>
<q>
Dramatically maintain clicks-and-mortar solutions without
functional solutions. Completely synergize
</q>
</p>
</div>
<div class="testimonial-name">MICHAEL TEDDY</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonial Section Ends -->
<!-- Our Impact Section Starts -->
<section class="our-impact-section">
<div class="ourimpact-heading-container">
<div
class="ourimpact-heading-child"
data-aos="fade-up"
data-aos-duration="2000"
>
<h1>Our Impact</h1>
</div>
</div>
<div class="ourimpact-boxes-container">
<div
class="ourimpact-boxes-child"
data-aos="fade-up"
data-aos-duration="2000"
>
<div class="ourimpact-boxes-child-container">
<div class="ourimpact-boxes-child-container-green">
<p>Number of <br />Volunteers</p>
<p id="volunteers">105</p>
</div>
<div class="ourimpact-boxes-child-container-green">
<p>Food Kits <br />Distributed</p>
<p id="distributed">997</p>
</div>
</div>
<div class="ourimpact-boxes-child-container-1">
<div class="ourimpact-boxes-child-container-1-green">
<p>Winter Kits <br />Distributed</p>
<p id="winter-kits">57</p>
</div>
<div class="ourimpact-boxes-child-container-1-green">
<p>Number of <br />Donors</p>
<p id="donors">89</p>
</div>
</div>
</div>
<div
class="ourimpact-boxes-child"
data-aos="fade-up"
data-aos-duration="2000"
>
<iframe
src="https://www.youtube.com/embed/9yshlg3jHQA"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope;
picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
</section>
<!-- Our Impact Section Ends -->
<!-- events-gallery-blog section Starts -->
<section class="events-gallery-blog">
<div class="container-egb">
<div
class="child-egb"
onclick="location.href='./events.html'"
data-aos="fade-up"
data-aos-duration="2000"
>
<img src="./images/index-pg/events-pic.jpg" alt="Events-image" />
<h2>Events</h2>
</div>
<div
class="child-egb"
onclick="location.href='./gallery.html'"
data-aos="fade-down"
data-aos-duration="2000"
>
<img src="./images/index-pg/gallery.jpeg" alt="Gallery-image" />
<h2>Gallery</h2>
</div>
<div
class="child-egb"
onclick="location.href='./blog.html'"
data-aos="fade-up"
data-aos-duration="2000"
>
<img src="./images/index-pg/blog.jpeg" alt="Blogs-image" />
<h2>Blog</h2>
</div>
</div>
</section>
<!-- events-gallery-blog section Ends -->
<!--???--------------------------------???-->
<!--???--------------------------------???-->
<!--!!!! ADD YOUR CODE ABOVE THIS !!!!-->
<!--!!!! COMMENT ONLY. !!!!-->
<!--???--------------------------------???-->
<!--???--------------------------------???-->
<!-------- footer Starts -------->
<footer class="footer">
<div class="fcontainer-1">
<div class="fchild-1">
<a href="./">
<img src="./images/Shivanjali_Logo.png" alt="Shivanjali NGO Logo" />
</a>
</div>
</div>
<div class="fcontainer-2">
<div class="fchild-2">
<div id="services">
<ul>
<li><a href="./">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./team.html">Our Team</a></li>
<li><a href="./work.html">Our Projects</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="fchild-2">
<div id="services">
<ul>
<li><a href="./404.html">Blog</a></li>
<li><a href="./404.html">Portfolio</a></li>
<li><a href="./404.html">Privacy Policy</a></li>
</ul>
</div>
</div>
<div class="fchild-2">
<h2>Connect with us</h2>
<div id="social-media">
<ul>
<li>
<a
href="mailto:[email protected]"
id="mail"
target="_blank"
>
<i class="bx bxs-envelope"></i
></a>
</li>
<li>
<a
href="https://www.facebook.com/profile.php?id=100076632314287"
id="fb"
target="_blank"
>
<i class="bx bxl-facebook"></i
></a>
</li>
<li>
<a
href=" https://twitter.com/shivanjalingo"
id="tweet"
target="_blank"
>
<i class="bx bxl-twitter"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/company/shivanjalisocietymakingabettertomorrow/"
id="linkedin"
target="_blank"
>
<i class="bx bxl-linkedin"></i
></a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCi0OPVWRefDpL122is7qDkg"
id="youtube"
target="_blank"
>
<i class="bx bxl-youtube"></i
></a>
</li>
</ul>
</div>
</div>
<div class="fchild-2">
<h2>Contacts</h2>
<div id="contacts">
<ul>
<li>
<a
href="https://maps.app.goo.gl/93Y3wxc5a54knbYQ9"
target="_blank"
><i class="bx bxs-map"> </i> B-25, Tonk Rd, Shiv Nagar, Shakti
Nagar, Tonk Phatak, Jaipur, Rajasthan 302018</a
>
</li>
<li>
<a href="tel:+919166398963"
><i class="bx bxs-phone-call"> </i> +91 91663 98963</a
>
</li>
<li>
<a href="tel:+918076004412"
><i class="bx bxs-phone-call"> </i> +91 80760 04412</a
>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-------- footer Ends -------->
<!-- Important Links Starts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.1.1/owl.carousel.min.js"></script>
<script src="./js/index.js"></script>
<!-- Important Links Ends -->
</body>
<!------------------------------->
<!------------------------------->
<!-- Important Files that will -->
<!-- common in all the pages. -->
<!------------------------------->
<!------------------------------->
<!------------------------------->
<!------------------------------->
<!-- Starts Here -->
<!------------------------------->
<!------------------------------->
<link rel="stylesheet" href="./css/commonStyle.css" />
<script src="./js/commonJs.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!------------------------------->
<!------------------------------->
<!-- Ends Here -->
<!------------------------------->
<!------------------------------->
</html>