-
Notifications
You must be signed in to change notification settings - Fork 1
/
intern.html
984 lines (838 loc) · 45.4 KB
/
intern.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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="description" content="Kites Foundation" />
<title>Kites Foundation</title>
<meta name="viewport" content="minimum-scale=1,initial-scale=1,width=device-width,shrink-to-fit=no" />
<meta property="og:title" content="Kites Foundation" />
<meta property="og:description"
content="Kites Foundation is a team of young zealots who aim at transforming our country, soul by soul through youth led development and collective effort. Here, we are to break the shackles of socio-cultural, linguistic,political and geographical barriers, to fly boundless." />
<meta property="og:image" content="https://cdn.kitesfoundation.org/img/logo.png" />
<meta property="og:url" content="https://kitesfoundation.org" />
<meta property="og:site_name" content="Kites Foundation." />
<meta name="twitter:title" content="Kites Foundation" />
<meta name="twitter:description"
content="Kites Foundation is a team of young zealots who aim at transforming our country, soul by soul through youth led development and collective effort. Here, we are to break the shackles of socio-cultural, linguistic,political and geographical barriers, to fly boundless." />
<meta name="twitter:image" content="https://cdn.kitesfoundation.org/img/logo.png" />
<meta name="twitter:card" content="summary" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Kites">
<!-- Favicons -->
<link href="https://cdn.kitesfoundation.org/img/favicon.png" rel="icon">
<link href="https://cdn.kitesfoundation.org/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,600,600i,700,700i|Satisfy|Comic+Neue:300,300i,400,400i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="voice_assets/vendor/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="intern_assets/style.css" rel="stylesheet">
<style>
.ion-chevron-right {
color: grey;
background-color: #ffb03b;
border-radius: 10px;
font-size: 40px;
line-height: 1;
position: absolute;
right: 50px;
/*background-color: black;
border-radius: 50px; */
}
.ion-chevron-left {
color: grey;
background-color: #ffb03b;
border-radius: 10px;
font-size: 40px;
line-height: 1;
position: absolute;
left: 50px;
}
/*#team .carousel-control-next-icon, #team .carousel-control-prev-icon {
background: none;
font-size: 32px;
line-height: 1;
position: absolute;
}*/
.carousel-indicators li {
background-color: grey;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FJ0GCVM55P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FJ0GCVM55P');
</script>
</head>
<body>
<!-- ======= Top Bar ======= -->
<section id="topbar" class="d-none d-lg-flex align-items-center fixed-top topbar-transparent">
<div class="container text-right">
<i class="icofont-phone"></i> +91 8138 0009 33
<i class="social-links">
<a href="https://twitter.com/FoundationKites" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="http://facebook.com/kitesfoundationfb" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://instagram.com/kitesfoundation" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCoyxzgTZee1t068TJ0o44fg" class="youtube"><i
class="bx bxl-youtube"></i></a>
<a href="https://www.linkedin.com/company/kites-foundation" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</i>
<!--
<i class="icofont-clock-time icofont-rotate-180"></i> Mon-Sat: 11:00 AM - 23:00 PM -->
</div>
</section>
<!-- ======= Header ======= -->
<!--<div class="container d-flex align-items-center">-->
<header id="header" class="fixed-top d-flex align-items-center header-transparent" style="min-height: 120px;">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<a href="index.html"><img src="https://cdn.kitesfoundation.org/img/logo.png" alt="" class="img-fluid"
style="min-height: 100px;"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li><a href="index.html">Home</a></li>
<li class="drop-down"><a>About Us</a>
<ul>
<li><a href="">Our Story</a></li><a href="vision.html">Vision & Mission</a>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Team</a>
<ul>
<li><a href="boardofdirectors.html">Board of Directors</a></li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Department</a>
<ul>
<li><a href="education.html">Education</a></li>
<li><a href="">Livelihood</a></li>
<li><a href="">Rang</a></li>
<li><a href="">Environment</a></li>
</ul>
</li>
<li><a href="executive.html">Executive Committee</a></li>
</ul>
</li>
<li><a href="partners.html">Our Partners</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="12AA.html">12AA Certificate</a></li>
<li><a href="80G.html">80G Certificate</a></li>
</ul>
</li>
<li class="drop-down"><a>Our Initiatives</a>
<ul>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Education</a>
<ul>
<li><a href="umeed.html">Umeed</a></li>
<li><a href="http://sumedha.org.in/">Sumedha</a></li>
<!-- <li><a href="mysanta.html">My Santa</a></li> -->
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Health</a>
<ul>
<li><a href="flattenthecurve.html">Flatten the curve</a></li>
<!-- <li><a href="#">Blood Bank</a></li> -->
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Environment</a>
<ul>
<li><a href="summerpots.html">Summerpots</a></li>
<li><a href="punarjjani.html">Punarjjani</a></li>
<!--<li><a href="#">Million Trees</a></li> -->
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Livelihood</a>
<ul>
<li><a href="mysanta.html">My Santa</a></li>
<li><a href="bookfarm.html">Book Farm</a></li>
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Technology</a>
<ul>
<li><a href="vibgyormunnar.html">Munnar Vibgyor Tourism</a></li>
<li><a href="c4munnar.html">Code4Munnar</a></li>
</ul>
</li>
<li class="drop-down"><i class="fas fa-angle-right"></i><a>Art & Culture</a>
<ul>
<li><a href="voiceofindia.html">Voice of India</a></li>
<li><a href="rang.html">Rang Fest</a></li>
</ul>
</li>
<li><a href="kalamawards/index.html">Kalam Awards</a></li>
</ul>
</li>
<li class="drop-down"><a>Impact</a>
<ul>
<li><a href="#">Their Stories</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
</ul>
</li>
<li class="drop-down"><a>Media</a>
<ul>
<li><a href="gallery.html">Gallery</a></li>
<li class="active"><a href="news.html">News</a></li>
</ul>
</li>
<li><a href="#contact">Contact</a></li>
<li class="book-a-table text-center"><a href="join.html">Join Us</a></li>
<li class="book-a-table text-center"><a href="https://rzp.io/l/Bookfarm">Donate</a>
</li>
<!--<li class="book-a-table1 text-center"><a href="https://kitesfoundation.org/c4munnar">Code4Munnar</a></li>-->
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<div id="heroCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active" style="background: url(assets/css/img11.jpg);background-size: cover;">
<div class="carousel-container" style="padding-top: 5em;">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Kites <span>Internship </span>Programme</h2>
<p style="color: #ffb03b;">Are you ready to step out? It’s your turn to lead!!</p>
<div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfGJm9xnGF4YEOI52TobH4sROvJL33qMg3uUnZxTqR5uLYuRA/viewform?embedded=true&pli=1" class="btn-book animate__animated animate__fadeInUp scrollto">Apply Now
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Hero -->
<!-- ======= Featured Services Section Section ======= -->
<section id="featured-services">
<div class="container">
<div class="row">
<div class="col-lg-4 box">
<i class="ion-ios-bookmarks-outline"></i>
<h4 class="title"><a href="">Who can apply?</a></h4>
<p class="description">
Anyone available for a duration of 3 months; from Nov 10, 2021 to March 11, 2022.
<br>Have relevant skills and interests
</p>
</div>
<div class="col-lg-4 box box-bg">
<i class="ion-ios-stopwatch-outline"></i>
<h4 class="title"><a href="">When to apply?</a></h4>
<p class="description">Applications will start from Oct 22 2021 and will end on Nov 6 2021. </p>
</div>
<div class="col-lg-4 box ">
<i class="ion-ios-heart-outline"></i>
<h4 class="title"><a href="">How to Apply?</a></h4>
<p class="description">
Step 1- Fill the given google form.
<br>Step 2- Shortlisted interns will be contacted via email for online interaction with the Kites officials.
</p>
</div>
</div>
</div>
</section><!-- End Featured Services Section -->
<!-- ======= About Section ======= -->
<section id="content" class="about">
<div class="section-title">
<h2>About</h2>
</div>
<div class="container content">
<p class="text-center" style="color: rgb(41,41,41);">
<strong> Kites Foundation</strong> is excited to invite young, aspirant minds to join a noble venture through a
unique
internship experience. As a youth-led organisation, dedicated to collective action, Kites is extending a dual
opportunity to learn and contribute to societal development. This internship is a great opportunity for those
who are passionate about improving their skills and channelising them for noble causes.
<br><br>
The interns have the freedom to choose among the 6 areas of their choice; education, media, environment, health,
livelihood and technology, for better development in their skill and experience.
<br><br></p>
<!-- <a href="https://drive.google.com/file/d/1uu4zPUeZiwYwzR021UktZhGqLPUN-QNd/view?usp=sharing" download class="btn-learn-more">Download Brochure</a><-->
</div>
</div>
<!-- <h3><span style="color: orange;">Roles</span></h3>
<div class="row">
<div class="col-sm-6">
<ul>
<li><i class="bx bx-check-double"></i> Content writer</li>
<li><i class="bx bx-check-double"></i>Graphic designer</li>
<li><i class="bx bx-check-double"></i> Photographer</li>
<li><i class="bx bx-check-double"></i> Editor</li>
<li><i class="bx bx-check-double"></i> Web development </li>
<li><i class="bx bx-check-double"></i> Project coordinator</li>
<li><i class="bx bx-check-double"></i> Fundraiser</li>
</ul>
</div> -->
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container">
<div class="section-title">
<h2>Roles</h2>
</div>
<div class="row">
<div class="col-lg-3">
<ul class="nav nav-tabs flex-column">
<li class="nav-item">
<a class="nav-link active show" data-toggle="tab" href="#tab-1">1. Content writer</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-2">2. Graphic designer</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-3">3. Photographer</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-4">4. Editor</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-5">5. Web development</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-6">6. Project coordinator</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-7">7. Fundraiser</a>
</li>
</ul>
</div>
<div class="col-lg-9 mt-4 mt-lg-0">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-12 details">
<h3>1. Content Writing (work from home)</h3>
<p>Content writers under Kites are passionate creators, dedicated to influencing positive change in
society. Writing for Kites is not limited to improving skill and experience; it extends to
channelling art towards spreading the organisation's message of collective action for a better
tomorrow and by doing so, being part of the change that everyone wants to see in this world.
<br>
<br> Selected interns are expected to support the causes that Kites stand for and effectively
contribute to the team's creative output.
</p>
<h4>Responsibilities:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Create original website, technical and social media content, blog posts, campaign posts, emails
and copy written content.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Edit and proofread content.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Engage in content brainstorming with
the media team, other interns and volunteers.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Employ SEO (search engine
optimization) strategies to devise content tailored for the website, social media and blog posts.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Write and edit content within the given
time frame</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Spoken and written proficiency in
either one or more languages mentioned- English, Malayalam, Tamil and Hindi.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Creative and technical writing skills.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Able to deliver content within the
specified time period.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Excellent communication skills; both
verbal and written.
verbal and written.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Dedicated towards social work and
willingness to work together.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Proficiency in MS Word and Google docs.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Good research skills</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Adaptable to manage different types of
content.</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Certificate and experience letter</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Opportunity to learn from creative
workshops</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Skill development.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Professional experience.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexible work hours.</p>
</ul>
<p>Best performing interns will be selected into the Media team for more exciting projects!
</p>
</div>
</div>
</div>
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-12 details">
<h3>2. Graphic Designing (work from home)</h3>
<p>The media team under Kites works relentlessly to put out original and creative designs that
perfectly visualise the organisation's message. The interns get the opportunity to challenge
themselves along with contributing to a greater cause.
<br>
<br> Selected interns are expected to support the causes that Kites stand for and effectively
contribute to the team's creative output.
</p>
<h4>Responsibilities:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Create and design original posters,
videos, social media posts and logos.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Engage in design brainstorming with
the media team, other interns and volunteers.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Design and edit content within the
given time frame.</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Experienced with UI, UX, Adobe Illustrator and Adobe Photoshop.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Able to deliver content within the
specified time period.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Dedicated towards social work and
willingness to work together.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Ability to implement and execute tasks
innovatively.</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Certificate and experience letter</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Skill development</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Opportunity to learn from creative
workshops</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexible work hours.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Professional work experience.</p>
</ul>
<p>Best performing interns will be selected into the Media team for more exciting projects!
</p>
</div>
</div>
</div>
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-12 details">
<h3>3. Photography Internship (on-site)</h3>
<p>Kites members and volunteers execute the organisation’s initiatives in different places, spreading
the message of collective affirmation. It is necessary to document the various projects for legal
purposes as well as to advocate the causes to potential donors. The interns will get the opportunity
to work alongside Kites members to spread the message of social justice and equality.
<br>
<br>Selected interns are expected to support the causes that Kites stand for and effectively
contribute to the team's creative output.
</p>
<h4>Responsibilities:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Conduct photoshoots for the assigned
projects.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Colour correct, resize and enhance
images .</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Skilled in Adobe Photoshop, CorelDRAW and Adobe Illustrator.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Creativity.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexibility.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Attention to detail.</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Certificate and experience letter</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Skill development</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Opportunity to learn from creative
workshops</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Live work experience.</p>
</ul>
<p>Best performing interns will be selected into the Media team for more exciting projects!<br>
<strong>Note: Selected interns should have their own equipment.
</strong>
</p>
</div>
</div>
</div>
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-12 details">
<h3>4. Editing Internship(Work from Home)</h3>
<p>Kites always push for creative ways to spread their message to potential volunteers and donors. On
social media platforms as well as on the official website, Kites broadcasts its social work that
attempts to make the world a better place. The interns will get the opportunity to work with the
team to build their skills and contribute to the causes that Kites stand for.
<br>
<br>Selected interns are expected to support the causes that Kites stand for and effectively
contribute to the team's creative output.
</p>
<h4>Responsibilities:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Create and edit creative videos for
the website, youtube and other social media platforms
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Brainstorm with the project heads
regarding assigned works.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Come up with creative ideas for video
shoots.
</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Proficient in Adobe Illustrator, Adobe Premiere Pro and Adobe Indesign.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexibility.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Excellent time management skills.</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Certificate and experience letter</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Skill development</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Live project work experience</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Opportunity to learn from creative workshops</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexible work hours</p>
</ul>
<p>Best performing interns will be selected into the Media team for more exciting projects!<br>
</p>
</div>
</div>
</div>
<div class="tab-pane" id="tab-5">
<div class="row">
<div class="col-lg-12 details">
<h3>5. Web Development Internship (Work from Home)</h3>
<p>Kites official website is a user-friendly destination for all the information regarding its
completed and ongoing initiatives, along with other relevant information. The web developers under
Kites relentlessly work towards making the website look and work smooth. The interns will get the
opportunity to work with the team to build their skills and contribute to the changes that Kites
work towards.
<br>
<br>Selected interns are expected to support the causes that Kites stand for and effectively contribute to the team's creative output.
</p>
<h4>Responsibilities:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Manage the website
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Troubleshoot IT issues
Engage with the different departments to manage the content of the website.
</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Proficient understanding of web markup, including HTML5, CSS3 and Bootstrap.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Skilled in client-side scripting and
JavaScript frameworks, including jQuery.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Ability to execute given tasks on time.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Dedicated towards Kites’ vision and
willingness to work together.
</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Certificate and experience letter</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Skill development</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Skill-oriented workshops</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexible work hours</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Live project work experience </p>
</ul>
<p>Best performing interns will be selected into the organization for more exciting projects!</p>
</div>
</div>
</div>
<div class="tab-pane" id="tab-6">
<div class="row">
<div class="col-lg-12 details">
<h3>6. Project Coordination Internship (Administration and Support)</h3>
<p>What makes Kites stand out is its different and unique projects that tackle social issues through
collective action. Such initiatives require thorough planning and coordination. The interns are
required to work with the project heads to ensure the success of the assigned projects. The
internship offers two different positions of ‘administration’ and ‘support’.
</p>
<h3>I. Administration (on-site)</h3>
<p>Each Kites project is executed with great care, involving members from different departments of
expertise. The administration interns are required to work closely with the project heads to ensure
the projects run smoothly and effectively and act as a liaison between the project heads and the
members from the different departments.
Selected interns are expected to support the causes that Kites stand for and effectively contribute to the team's creative output.
</p>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Organize project reports, keep track
of expenses and plan meetings.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Assign and keep track of the tasks
given to different departments.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Engage in brainstorming with the
project heads and other members.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Provide detailed updates to project
heads.
</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Proficient in MS Word, Google Docs and MS Excel.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Ability to approach uncertain problems
with efficiency.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Excellent communication and leadership
skills.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Ability to multitask without
compromising the quality of the output.
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Dedicated towards Kites’ vision and
willingness to work together.
</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> On-site work experience with dignified
government officials.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Certificate and experience letter</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Opportunity to lead projects</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Skill development</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Professional network</p>
</ul>
<p>Best performing interns will be selected into the organization for more exciting projects!</p>
<h3>II. Support (work from home/on-site)
</h3>
<p>
The responsibilities of a project head are several and require a lot of attention to numerous
aspects. Supporting interns are required to assist the project heads in organizing and executing the
different parts of an initiative.
<br><br>Selected interns are expected to support the causes that Kites stand for and effectively contribute to the team's creative output.
</p>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Assist the project heads in the
planning and executing of projects.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Support in developing reports,
organizing meetings and keeping track of the project’s progress.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Engage in brainstorming with the
project heads.
</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Proficient in MS Word, Google Docs and MS Excel.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Excellent verbal and written
communication skills.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Punctuality</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Dedicated towards Kites’ vision and
willingness to work together</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Certificate and experience letter </p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Skill development</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Professional network</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Live project work experience</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> A thorough understanding of the structure of an organization and how it functions.
</p> </ul>
<p>Best performing interns will be selected into the organization for more exciting projects!</p>
</div>
</div>
</div>
<div class="tab-pane" id="tab-7">
<div class="row">
<div class="col-lg-12 details">
<h3>7. Fundraiser</h3>
<p>In every NGO, donations play a crucial role in fuelling its purpose and vision. Not just moral
support, but monetary aid is also necessary for bringing positive social change. The interns are
expected to be dedicated to Kites’ mission and contribute to the growth of the organisation.
</p>
<p>Selected interns are expected to support the causes that Kites stand for and effectively contribute to the team's creative output.</p>
<h4>Responsibilities:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Have a thorough understanding of the
projects assigned for fundraising.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i> Connect with the project head to bring
forth strategies for fundraising.
</p>
</ul>
<h4>Preferred Skills</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>
Excellent communication skills.
<p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Good research skills.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Compelling.
</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Dedicated towards the cause.
</p>
</ul>
<h4>What we offer:</h4>
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Certificate and experience letter </p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Work experience.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Flexible work hours</p>
</ul>
<p>Best performing interns will be selected into the organization for more exciting projects!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<section id="why" class="about">
<div class=" container section-title">
<h2 class="text-left">What makes this internship unique?</h2>
</div>
<div class="container why">
<p class="text-justify" style="color: rgb(41,41,41);">
Rather than assigning work from day one, Kites is offering a proper orientation and guidance for the interns so
that they understand the concept of social work, the organisation of Kites, its structure and its team better.
Along with that, certified workshops for technical internships like web development and graphic designing by
experts will also be provided. The interns will be able to work in a friendly environment to grow their skills
and connect with the Kites family.
</p>
</div>
<div class=" container section-title">
<h2 class="text-left">General perks/benefits</h2>
</div>
<div class="container why">
<ul>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Certificate and experience letter from the CEO/MD/CAO</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Skill development.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Professional work experience.</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Leadership opportunities</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Opportunity to learn from creative/skill-oriented workshops</p>
<p><i class="bx bx-check-double" style="color: #ffb03b;"></i>Create professional network</p>
</ul>
</div>
</section>
<!-- <table class="table">
<tbody>
<tr>
<th scope="row">Application commencing</th>
<td>26/12/2020</td>
</tr>
<tr>
<th scope="row">Last date for application</th>
<td>30/12/2020</td>
</tr>
<tr>
<th scope="row">Project begins on</th>
<td>15/01/2021</td>
</tr>
<tr>
<th scope="row">Project ends on</th>
<td>15/06/2021</td>
</tr>
</tbody>
</table> -->
<div id="form">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSfGJm9xnGF4YEOI52TobH4sROvJL33qMg3uUnZxTqR5uLYuRA/viewform?embedded=true"
width="100%" height="700px" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-7">
<div class="footer-info">
<h3>KITES Foundation</h3>
<h4>To the Sky and Beyond</h4>
<p>
KITES Foundation is a not-for-profit, non-governmental organization that strives to channelise the
power
of productive youth engagement on various fronts to facilitate a ‘Youth-Led Development’ through
multiple sectors including Education, Environment, Livelihood, Arts and Culture, Media, Technology
etc.
<br> <br> KITES foundation is registered ( TSR/CA/39/2020 ) under 'The Indian Societies Registration
Act
of 1860' with 80G certificate.
<br>NGO Darpan Unique Id : KL/2020/0260772
</p>
<div class="footer-links">
<ul>
<li><a href="12AA.html">12AA Certificate </a></li>
<li> <a href="80G.html">80G Certificate </a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-1 col-md-1 footer-links">
</div>
<div class="col-lg-4 col-md-4 footer-newsletter">
<div class="social-links mt-3">
<a href="https://twitter.com/FoundationKites" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="http://facebook.com/kitesfoundationfb" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://instagram.com/kitesfoundation" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCoyxzgTZee1t068TJ0o44fg" class="youtube"><i
class="bx bxl-youtube"></i></a>
<a href="https://www.linkedin.com/company/kites-foundation" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
</div>
<br>
<p><i class="icofont-envelope"></i> [email protected]</p>
<p> <i class="icofont-phone"></i> +91 8138 0009 35</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="copyright">
© Copyright <strong><span>Kites Foundation</span></strong>. All Rights Reserved
</div>
</div>
<div class="col-lg-6 policies">
<div class="footer-links">
<ul>
<li><a href="vision.html">About us </a></li>
<li> <a href="termsandconditions.html">Terms and Conditions </a></li>
<li> <a href="privacypolicy.html">Privacy policy </a></li>
<li> <a href="refundpolicy.html">Refund policy </a></li>
</ul>
</div>
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery-sticky/jquery.sticky.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>