-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
914 lines (854 loc) · 38.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>GirlScript Vijayawada</title>
<link rel="icon" href="logo.jpg"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="GirlScript Vijayawada" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<link rel="stylesheet" href="css/easy-responsive-tabs.css">
<link rel="stylesheet" href="css/jquery.gallery.css">
<link href="css/popuo-box.css" rel="stylesheet" type="text/css" media="all" />
<!-- font-awesome-icons -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //font-awesome-icons -->
<link href="//fonts.googleapis.com/css?family=Handlee" rel="stylesheet">
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
</head>
<body>
<script src="js/jquery.vide.min.js"></script>
<!-- header -->
<div class="w3_agile_header">
<div class="container">
<div class="w3_agile_header_left">
<p></p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="w3_navigation">
<div class="container">
<nav class="navbar navbar-default">
<div class="navbar-header navbar-left">
<div class="w3_navigation_pos">
<h1><a href="index.html"><span>GirlScript</span><i>Vijayawada</i></a></h1>
</div>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right" id="bs-example-navbar-collapse-1">
<nav class="menu menu--miranda">
<ul class="nav navbar-nav menu__list">
<li class="menu__item menu__item--current"><a href="index.html" class="menu__link">Home</a></li>
<li class="menu__item"><a href="#events" class="scroll menu__link">Our Events</a></li>
<li class="menu__item"><a href="#programs" class="scroll menu__link">Programs</a></li>
<li class="menu__item"><a href="#gallery" class="scroll menu__link">Gallery</a></li>
<li class="menu__item"><a href="#team" class="scroll menu__link">Team</a></li>
</ul>
</nav>
</div>
</nav>
</div>
</div>
<!-- //header -->
<!-- pop-up-box -->
<!-- //pop-up-box -->
<!-- banner -->
<div data-vide-bg="video/girlscript">
<div class="center-container">
<div class="container">
<div class="w3_agile_banner_info">
<div class="agileits_w3layouts_header">
<h2 class="test2">Go after <i>dreams not people</i></h2>
</div>
<p class="w3_elit_para"></p>
<div class="agile_more">
<a href="#" class="btn btn-3 btn-3e" >GirlsScipt Vijayawada</a>
</div>
</div>
</div>
</div>
</div>
<!-- bootstrap-pop-up -->
<div class="modal video-modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModal">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
Youth's role in making the right career choice.23-09-2020
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<section>
<div class="modal-body">
<div class="w3_modal_body_left">
<img src="images/event1.jpg" alt=" " class="img-responsive" />
</div>
<div class="w3_modal_body_right">
<p>It is rightly said that - "Choices are the Hinges of Destiny."
Almost all of us would have been in a "Y" junction in our life and been skeptical about making the right career choices.<br>
To clear such thoughts:<br>
Our Guest Speaker of the event was - Mr. Kanthi Dutt who emerged out to be an inspiration to the audience.
His pioneering spirit made him a serial entrepreneur at a very young age, coupled with an impressive background of perseverance and willingness.
The main topic of the event was - "Youth's Role in Making the Right Career Choices". Our speaker of the event gave valuable insights on the same.</p>
</div>
<div class="clearfix"> </div>
</div>
</section>
</div>
</div>
</div>
<!-- //bootstrap-pop-up -->
<!-- banner-bottom -->
<div id="about" class="banner-bottom">
<div class="container">
<h3>There <span class="w3_child">i</span><span class="w3_child1">s </span><span class="w3_child2">n</span><span class="w3_child3">o </span><span class="w3_child4"></span>force more powerful than a women determined to rise.</h3>
<p class="w3_agile_elit"></p>
<div class="agile_banner_bottom_grids">
<div class="col-md-3 agile_banner_bottom_grid">
<div class="view view-first">
<img src="images/uplift.jpg" alt=" " class="img-responsive" />
<div class="mask">
<h5>Uplift</h5>
<p>GirlScript Foundation envisions establishing a society where everyone is digitally
literal and has no myths and taboos about technology.</p>
</div>
</div>
<div class="agile_banner_bottom_grid_pos">
<h4>Uplift</h4>
</div>
</div>
<div class="col-md-3 agile_banner_bottom_grid">
<div class="view view-first">
<img src="images/letspy.png" alt=" " class="img-responsive" />
<div class="mask">
<h5 class="agileits_w3layouts1">Letspy</h5>
<p>LetsPy- It is India's biggest Python Programming BootCamp.
Started from Nagpur in 2017 as PyCamp, in 2018 LetsPy was conducted in two cities-Pune and Nagpur. </p>
</div>
</div>
<div class="agile_banner_bottom_grid_pos">
<h4 class="agileits_w3layouts1">Letspy</h4>
</div>
</div>
<div class="col-md-3 agile_banner_bottom_grid">
<div class="view view-first">
<img src="images/gscup.png" alt=" " class="img-responsive" />
<div class="mask">
<h5 class="agileits_w3layouts2">GSCup</h5>
<p>GS Cup is a community-based event that will promote
and encourage the students who have contributed to any community.</p>
</div>
</div>
<div class="agile_banner_bottom_grid_pos">
<h4 class="agileits_w3layouts2">GSCup</h4>
</div>
</div>
<div class="col-md-3 agile_banner_bottom_grid">
<div class="view view-first">
<img src="images/gssc.png" alt=" " class="img-responsive" />
<div class="mask">
<h5 class="agileits_w3layouts3">GS Summer of Code</h5>
<p> GirlScript Foundation, started in 2018,
with an aim to help beginners get started with Open Source Development while encouraging diversity.</p>
</div>
</div>
<div class="agile_banner_bottom_grid_pos">
<h4 class="agileits_w3layouts3">GSSC</h4>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //banner-bottom -->
<!-- banner-bottom -->
<div class="modal video-modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModal1">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
A Candid conversation with Shreya Pattar.
<button type="button" class="close" data-dismiss="modal1" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<section>
<div class="modal-body">
<div class="w3_modal_body_left">
<img src="images/event2.jpg" alt=" " class="img-responsive" />
</div>
<div class="w3_modal_body_right">
<p>
The GirlScript Foundation is a celebration of Women, Knowledge, Technology, and Innovation with more than 70 companies/communities and startups. Our goal is to bring people together to give them inspiration about what our non-profit organization is hoping to achieve by promoting diversity in Technical Education.
<br>
As a part of the local Chapter community group, GirlScript Vijayawada has planned an exciting event on 26th September 2020 from 5 p.m to 6 p.m for all groups of audiences.
There is always a question on whether one should learn in-depth in one's chosen field or should be an all-rounder. Should he/she be a 'jack of all and a master of none'? Does it really help?
All around, multifaceted persons are generally noticed and they grow up the ladder quickly as well. How and why does this happen?
<br>
Shreya Pattar is a Copywriter and Content Writer, LinkedIn Campus Editor, Student of Literature, and Philosophy. She is a personification of multi-talent. Do join us in a candid conversation with Shreya Pattar.
<br>
We are stoked for #girlscriptvijawada. Who's with us??<br>
Don't miss this amazing opportunity to be a part of this intuitive event.
<br>
Do register through the link provided.<br>
(Link in bio)
</p>
</div>
<div class="clearfix"> </div>
</div>
</section>
</div>
</div>
</div>
<!-- //bootstrap-pop-up -->
<!-- programs -->
<div id="programs" class="programs">
<div class="container">
<h3 class="w3_agileits_head"><span class="w3_child">O</span><span class="w3_child1">u</span><span class="w3_child4">r</span> Programs</h3>
<p class="w3_agile_elit"></p>
<div class="agile_banner_bottom_grids">
<div id="verticalTab">
<ul class="resp-tabs-list">
<li><i aria-hidden="true"></i>Announcements</li>
<li><i aria-hidden="true"></i>Girlscript Summer of Coding</li>
<li><i aria-hidden="true"></i>GirlScript India Summit</li>
<li><i aria-hidden="true"></i>Education Outreach Program</li>
<li><i aria-hidden="true"></i>Uplift Project</li>
<li><i aria-hidden="true"></i>GS Cup</li>
</ul>
<div class="resp-tabs-container">
<div class="w3layouts_vertical_tab">
<p>Our Latest event under AP Regional Summit reached most live view on Girlscript Foundation YT channel(Among all GS regional summit).
<br><a href="https://www.youtube.com/watch?v=rwnec87xVec&t=247s" style="color:yellow;">Click here</a></p>
<p> Watch our second event
<br> <a href="https://www.instagram.com/p/CFi-moUnVkq/?igshid=1corsha9dqoka" style="color:yellow;">Click here</a>
</p>
</div>
<div class="w3layouts_vertical_tab">
<p>GirlScript Summer of Code is the 3 month long Open Source program during summers conducted by GirlScript Foundation, started in 2018, with an aim to help beginners get started with Open Source Development while encouraging diversity.
<i>GirlScript Summer of Code 2019 witnessed overwhelming participation and 2020 edition will carry the legacy forward while promising to be even more impactful and grand.</i></p>
<ul>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>GirlScript Summer of Code 2019 witnessed overwhelming participation of 1000+, from 4 countries . We had 150+ mentor applications.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>In our previous GSSoC, we had over 20 different projects providing students with chance to work on those projects under guidance of esteemed mentors.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>GirlScript Summer of Code 2019 witnessed overwhelming participation and the 2020 edition will carry the legacy forward while promising to be even more impactful and grand.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>Throughout the program, participants contribute to different projects under guidance of experienced mentors.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>Top participants get exciting goodies and opportunities.</li>
</ul>
</div>
<div class="w3layouts_vertical_tab">
<p>GirlScript India Summit 2020 is a <i>Celebration of Women, Knowledge, Technology, and Innovation with 70+ Companies and Startups</i>
</p>
<ul>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>What is 21U21 Awards? - These awards recognize individual efforts towards particularly innovative or extraordinary contributors who have achieved heights under the age of twenty-one and created a great impact.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>What is Hack for Women? - Online Hackathon duration is 12hrs. Group of 3-5 members, atleast 1 girl. To increase empowerment of Women</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>Why Sponser Us? -Companies understand the value of tech education and awareness and that's why many prestigious companies have sponsored us in the past.Please write to us at'[email protected]' for sponsoring our event in 2020.</li>
</ul>
</div>
<div class="w3layouts_vertical_tab">
<p>Our �Educational Outreach� is a scholarship program to make education reach everyone.
<i>So far, we had conducted 3 batches under this program and we are pleased to announce that our batches so far have received wonderful feedback from our audience.</i></p>
<ul>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>The 1st batch of our program was a custom course for teachers, students.Our students learned about technologies like Flutter, Data Science, etc whereas our teachers learned how to adapt to modern teaching methods using online methods like zoom, webex, google meet, hangouts, etc.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>Our 2nd batch was for teachers and tech enthusiasts from all around the world.For students, we offered courses like Game Development, Computer Vision, Android Development, etc. </li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>Our 3rd batch was a special batch as we have industry analysts giving seminars to 1000+ participants. Naming a few, we had WOW! Momo�s
Senior social media marketing strategist, Niam Alam giving sessions on �SHAPING THE NEXT-GEN INFLUENCERS WITH HACKTHEORY�.</li>
</ul>
</div>
<div class="w3layouts_vertical_tab">
<p>This new global project aims at helping everyone looking for opportunities to leverage their knowledge, skills, and potential to higher levels.
<i>If you�re a student wanting to learn tech stacks like HTML, CSS, JavaScript, Angular, React, Node Js, Artificial Intelligence, Machine Learning and many more</i></p>
<ul>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>GirlScript Foundation envisions establishing a society where everyone is digitally literal and has no myths and taboos about technology.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>There are many online courses available but not everyone can afford the cost of having them.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>We in girlscript have broken this chain and have brought to you the knowledge you had been seeking for.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>Initiative to uplift all with the desire to learn more ,all for �free�. GirlScript Foundation keeps on throwing new opportunities for the one who is willing to catch it and build.</li>
</ul>
</div>
<div class="w3layouts_vertical_tab">
<p>GS Cup is a community-based event that will promote and encourage the students who have contributed to any community.
<i>GS Cup will be awarded to the students who will score the maximum number of points according to the guidelines and contribution he/she has given to the community.</i></p>
<ul>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>GS CUP we built a stronger technical aptitude by bringing out the best in all of us by pushing is to work harder</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>We are bringing you the GS Cup in which you will be awarded with points on a scale of contribution you have made to the community. And the person with the most points will be the winner of the most existing GS Cup.</li>
<li><i class="fa fa-check-square-o" aria-hidden="true"></i>A true Community program that encourages us all by being a guide, a friend and a techie.We at GirlScript promote each one of us for the work we do, the challenges we conqueror, reward when we succeed and lead us when we fail.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- //programs -->
<!-- //team -->
<!-- events -->
<div id="events" class="events">
<div class="container">
<h3 class="w3_agileits_head">Our Latest <span class="w3_child">E</span><span class="w3_child1">v</span><span class="w3_child2">e</span><span class="w3_child4">n</span><span class="w3_child">t</span><span class="w3_child1">s</span></h3>
<br>
<br>
<p class="w3_agile_elit"></p>
<div class="agile_events_grid">
<img src="images/event2.jpg" alt=" " class="img-responsive" />
<div class="agile_events_grid_pos_sub agile_events_grid_pos1">
<h5 class="w3_agileits_event_head"><span>26</span> 9 / 2016</h5>
<h4><a href="#" data-toggle="modal" data-target="#myModal1">A Candid conversation with Shreya Pattar</a></h4>
</div>
<div class="agileits_w3layouts_events_grid_social1">
<ul class="agileinfo_social_icons">
<li><a href="https://www.facebook.com/101410434988241/photos/a.146770703785547/158088602653757/?type=3&theater" class="w3_twitter"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/feed/update/urn:li:activity:6715128005427109888" class="w3l_google"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/p/CFi-moUnVkq/?igshid=1corsha9dqoka" class="w3ls_dribble"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
<div class="agile_banner_bottom_grids">
<div class="agile_events_grid">
<img src="images/event1.jpg" alt=" " class="img-responsive" />
<div class="agile_events_grid_pos agile_events_grid_pos1">
<h5><span>29</span> 8/ 2020</h5>
<h4><a href="#" data-toggle="modal" data-target="#myModal">Youth's role in making right career choices.</a></h4>
</div>
<div class="agileits_w3layouts_events_grid_social">
<ul class="agileinfo_social_icons">
<li><a href="https://www.facebook.com/101410434988241/photos/a.146770703785547/146772293785388/?type=3&theater" class="w3_twitter"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/feed/update/urn:li:activity:6703325996583661568" class="w3l_google"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/p/CEPNQ_UBcEi/?igshid=1vtxn8ml7t7ic" class="w3ls_dribble"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- team -->
<div id="team" class="team">
<div class="container">
<h3 class="w3_agileits_head">Our <span class="w3_child">T</span><span class="w3_child1">e</span><span class="w3_child2">a</span><span class="w3_child4">m</span> Players</h3>
<p class="w3_agile_elit"></p>
<div class="agile_banner_bottom_grids">
<div class="w3_slider">
<ul class="slides">
<li class="slide">
<div class="col-md-3 wthree_team_grid">
<a href="https://www.linkedin.com/in/sambhav228"target="_blank"> <img src="images/sambhav.jpg" alt="" class="img-responsive"></a>
<div class="wthree_team_grid_w3">
<h4>Sambhav Kumar</h4>
<p>Chapter Lead</p>
<div class="wthree_team_grid_w3_pos">
</div>
</div>
</div>
<div class="col-md-3 wthree_team_grid">
<a href="https://in.linkedin.com/in/gayathri-y"target="_blank"> <img src="images/gayathri.jpg" alt="" class="img-responsive"></a>
<div class="wthree_team_grid_w3">
<h4>Gayathri</h4>
<p>Marketing Manager</p>
<div class="wthree_team_grid_w3_pos">
</div>
</div>
</div>
<div class="col-md-3 wthree_team_grid">
<a href="https://www.linkedin.com/in/ashrithagonuguntla/"target="_blank"> <img src="images/ashritha.jpg" alt="" class="img-responsive"></a>
<div class="wthree_team_grid_w3">
<h4>Ashritha</h4>
<p>Content Writer</p>
<div class="wthree_team_grid_w3_pos">
<ul class="agileinfo_social_icons">
</ul>
</div>
</div>
</div>
<div class="col-md-3 wthree_team_grid">
<a href="https://www.linkedin.com/in/idinakarp"target="_blank"> <img src="images/dinaker.jpg" alt="" class="img-responsive"></a>
<div class="wthree_team_grid_w3">
<h4>Dinaker</h4>
<p>Graphic Designer</p>
<div class="wthree_team_grid_w3_pos">
<ul class="agileinfo_social_icons">
</ul>
</div>
</div>
</div>
<div class="clearfix"> </div>
</li>
<li class="slide">
<div class="col-md-3 wthree_team_grid">
<a href="https://www.linkedin.com/in/alekhya-bachu-550194175"target="_blank"> <img src="images/alekhya.jpg" alt="" class="img-responsive"></a>
<div class="wthree_team_grid_w3">
<h4>Alekhya</h4>
<p>Web Developer</p>
<div class="wthree_team_grid_w3_pos">
</div>
</div>
</div>
<div class="col-md-3 wthree_team_grid">
<a href="https://www.linkedin.com/in/barnala-purvaja-durga/"target="_blank"> <img src="images/purvaja.jpg" alt="" class="img-responsive"></a>
<div class="wthree_team_grid_w3">
<h4>Purvaja Durga</h4>
<p>Web Developer</p>
<div class="wthree_team_grid_w3_pos">
</div>
</div>
</div>
<div class="clearfix"> </div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- //events -->
<!-- testimonials -->
<div id="testimonials" class="testimonials">
<div class="container">
<h3 class="w3_agileits_head wthree_head"><span class="w3_child1">A</span><span class="w3_child2">B</span><span class="w3_child">O</span><span class="w3_child4">U</span><span class="w3_child1">T</span><span class="w3_child"> G</span><span class="w3_child1">I</span><span class="w3_child2">R</span><span class="w3_child4">L</span><span class="w3_child">S</span><span class="w3_child1">C</span><span class="w3_child2">R</span><span class="w3_child">I</span><span class="w3_child1">P</span><span class="w3_child2">T</span> </h3>
<p class="w3_agile_elit">GIRLSCRIPT VIJAYAWADA</p>
<div class="agile_banner_bottom_grids">
<div class="agileits_testimonials_grids">
<ul id="flexiselDemo1">
<li>
<div class="agileinfo_testimonials_grid">
<img src="images/pic11.png" alt=" " class="img-responsive" />
</div>
</li>
<li>
<div class="agileinfo_testimonials_grid">
<img src="images/pic3.png" alt=" " class="img-responsive" />
</div>
</li>
<li>
<div class="agileinfo_testimonials_grid">
<img src="images/pic4.jpg" alt=" " class="img-responsive" />
</div>
</li>
<li>
<div class="agileinfo_testimonials_grid">
<img src="images/pic5.png" alt=" " class="img-responsive" />
</div>
</li>
<li>
<div class="agileinfo_testimonials_grid">
<img src="images/gssc.jpg" alt=" " class="img-responsive" />
</div>
</li>
</ul>
<br>
<br>
<p>GirlScript Foundation is a section-8 NON PROFIT company registered under the government of India on 2nd June 2017. GirlScript started as a project has been selected by Mozilla under Open Leadership program out of 51 open-source projects worldwide. GirlScript hosts many tech events and coding competition to help you get started and learn computer programming.</p>
</div>
</div>
</div>
</div>
<!-- //testimonials -->
<!-- work -->
<br>
<br>
<div id="gallery" class="gallery">
<div class="container">
<h3 class="w3_agileits_head"> <span class="w3_child">G</span><span class="w3_child1">A</span><span class="w3_child2">L</span><span class="w3_child2">L</span><span class="w3_child1">E</span><span class="w3_child4">R</span><span class="w3_child">Y</span> </h3>
<p class="w3_agile_elit">Memories with GIRSCRIPT VIJAYAWADA</p>
<div class="agile_work_single_grids">
<div class="bs-example bs-example-tabs wthree_example_tab" role="tabpanel" data-example-id="togglable-tabs">
<div id="myTabContent" class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="home" aria-labelledby="home-tab">
<div class="w3_tab_img agileinfo_img">
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/g1.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/g1.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Girlscript</span>
</figcaption>
</figure>
</a>
</div>
<div class="agileits_demo">
<a href="images/g2.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/g2.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Webinars</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/g3.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/g3.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Swags</span>
</figcaption>
</figure>
</a>
</div>
<div class="agileits_demo">
<a href="images/main.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/main.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Event1</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/g4.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/g4.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Event</span>
</figcaption>
</figure>
</a>
</div>
<div class="agileits_demo">
<a href="images/g5.jpeg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/g5.jpeg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Event</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="learning" aria-labelledby="learning-tab">
<div class="w3_tab_img agileinfo_img">
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/g6.jpeg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/g6.jpeg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Event1</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/main.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/main.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Event1</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/23.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/23.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Nursery</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="playing" aria-labelledby="playing-tab">
<div class="w3_tab_img agileinfo_img">
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/13.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/13.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Nursery</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/23.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/23.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Nursery</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="painting" aria-labelledby="painting-tab">
<div class="w3_tab_img agileinfo_img">
<div class="col-md-4 w3_tab_img_left">
<div class="agileits_demo">
<a href="images/1.jpg">
<figure class="w3layouts_work">
<div class="w3layouts_work_sub">
<img src="images/1.jpg" alt=" " class="img-responsive" />
</div>
<figcaption>
<span>Nursery</span>
</figcaption>
</figure>
</a>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<!-- //contact -->
<!-- footer -->
<div class="w3_agileits_twitter_post">
<div class="container">
<h4><center>"GIRLSCRIPT VIJAYAWADA"</center></h4>
</div>
</div>
<div class="footer">
<div class="col-md-6 wthree_footer_grid_left">
<div class="col-md-5 wthree_footer_grid_left1">
<h4>About Us</h4>
<p>GirlScript is the fastest growing tech-community in India. It is a non-profit project brought to you by GirlScript Foundation to help beginners in technology.</p>
</div>
<div class="col-md-4 wthree_footer_grid_left1">
<h4>Navigation</h4>
<ul>
<li><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i><a href="index.html">Home</a></li>
<li><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i><a href="#about" class="scroll">Our Events</a></li>
<li><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i><a href="#programs" class="scroll">Programs</a></li>
<li><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i><a href="#gallery" class="scroll">Gallery</a></li>
<li><i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i><a href="#team" class="scroll">Team</a></li>
</ul>
</div>
<div class="clearfix"> </div>
</div>
<div class="col-md-6 wthree_footer_grid_right">
<div class="wthree_footer_grid_right_main">
<div class="col-md-5 wthree_footer_grid_right1">
<h5>Contact Us</h5>
<ul>
<li><i class="fa fa-facebook-square" aria-hidden="true"></i><a href="https://www.facebook.com/Girlscript-Vijayawada">GirlscriptVijayawada</a></li>
<li><i class="fa fa-linkedin" aria-hidden="true"></i><a href="https://www.linkedin.com/company/girlscript-vijayawada">GirlscriptVijayawada</li>
<li><i class="fa fa-instagram" aria-hidden="true"></i><a href="https://www.instagram.com/girlscript_vijayawada/">GirlscriptVijayawada</a></li>
</ul>
</div>
<div class="col-md-7 wthree_footer_grid_right2">
<div class="wthree_footer_grid_right2_w3">
<img src="images/contact.jpg" alt=" " class="img-responsive" />
</div>
<div class="wthree_footer_grid_right2_w3">
<img src="images/gssc.jpg" alt=" " class="img-responsive" />
</a>
</div>
<div class="wthree_footer_grid_right2_w3">
<img src="images/pic1.png" alt=" " class="img-responsive" />
</div>
<div class="wthree_footer_grid_right2_w3">
<img src="images/pic5.png" alt=" " class="img-responsive" />
</div>
<div class="wthree_footer_grid_right2_w3">
<img src="images/pic4.jpg" alt=" " class="img-responsive" />
</div>
<div class="wthree_footer_grid_right2_w3">
<img src="images/contact.jpg" alt=" " class="img-responsive" />
</div>
<div class="clearfix"> </div>
</div>
<div class="clearfix"> </div>
</div>
<div class="wthree_footer_grid_right_main1">
<ul class="agileinfo_social_icons agileits_footer_social">
<li><i class="fa fa-envelope" aria-hidden="true"></i> [email protected]</li>
</ul>
</div>
</div>
<div class="clearfix"> </div>
</div>
<div class="w3layouts_copy_right">
<div class="container">
<p></a></p>
</div> Copyright <i class=" fa fa-copyright " aria-hidden="true"></i> 2020, by GirlScript Vijayawada. All Rights Reserved.
</div>
<!-- //footer -->
<!-- contact-effect -->
<script src="js/classie.js"></script>
<script>
(function() {
// trim polyfill : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim
if (!String.prototype.trim) {
(function() {
// Make sure we trim BOM and NBSP
var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
String.prototype.trim = function() {
return this.replace(rtrim, '');
};
})();
}
[].slice.call( document.querySelectorAll( 'input.input__field' ) ).forEach( function( inputEl ) {
// in case the input is already filled..
if( inputEl.value.trim() !== '' ) {
classie.add( inputEl.parentNode, 'input--filled' );
}
// events:
inputEl.addEventListener( 'focus', onInputFocus );
inputEl.addEventListener( 'blur', onInputBlur );
} );
function onInputFocus( ev ) {
classie.add( ev.target.parentNode, 'input--filled' );
}
function onInputBlur( ev ) {
if( ev.target.value.trim() === '' ) {
classie.remove( ev.target.parentNode, 'input--filled' );
}
}
})();
</script>
<!-- //contact-effect -->
<!-- work -->
<script type="text/javascript" src="js/jquery.gallery.js" ></script>
<script>
$(function() {
$('.w3_tab_img').createSimpleImgGallery();
});
</script>
<!-- //work -->
<!-- flexisel -->
<script type="text/javascript">
$(window).load(function() {
$("#flexiselDemo1").flexisel({
visibleItems: 5,
animationSpeed: 1000,
autoPlay: true,
autoPlaySpeed: 3000,
pauseOnHover: true,
enableResponsiveBreakpoints: true,
responsiveBreakpoints: {
portrait: {
changePoint:480,
visibleItems: 1
},
landscape: {
changePoint:640,
visibleItems:3
},
tablet: {
changePoint:768,
visibleItems: 3
}
}
});
});
</script>
<script type="text/javascript" src="js/jquery.flexisel.js"></script>
<!-- //flexisel -->
<!-- team-slider -->
<script type="text/javascript" src="js/jquery.glide.js"></script>
<script type="text/javascript">
var glide = $('.w3_slider').glide().data('api_glide');
$(window).on('keyup', function (key) {
if (key.keyCode === 13) {
glide.jump(3, console.log('Wooo!'));
};
});
</script>
<!-- //team-slider -->
<!-- responsive-tabs -->
<script src="js/easy-responsive-tabs.js"></script>
<script>
$(document).ready(function () {
$('#verticalTab').easyResponsiveTabs({
type: 'vertical',
width: 'auto',
fit: true
});
});
</script>
<!-- //responsive-tabs -->
<!-- text-effect -->
<script type="text/javascript" src="js/jquery.transit.js"></script>
<script type="text/javascript" src="js/jquery.textFx.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.test2').textFx({
type: 'slideIn',
direction: 'right',
iChar: 250,
iAnim: 1000
});
});
</script>
<!-- //text-effect -->
<!-- start-smoth-scrolling -->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!-- start-smoth-scrolling -->
<!-- here stars scrolling icon -->
<script type="text/javascript">
$(document).ready(function() {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!-- //here ends scrolling icon -->
<!-- for bootstrap working -->
<script src="js/bootstrap.js"></script>
<!-- //for bootstrap working -->
</body>
</html>