-
Notifications
You must be signed in to change notification settings - Fork 33
/
list-student-chapter.html
executable file
·1194 lines (1100 loc) · 64.2 KB
/
list-student-chapter.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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IOSD | Student Chapters | International Organisation of Software Developers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Revolutionary advancement in the field of technology is a dream come true. Passion breathes innovation and tech people band together pooling technical skills to form a community of professional coders who mix technology with creativity to make commercial and non-commercial projects for prestigious organisations.">
<meta name="keywords" content="iosd, software development, programming, student chapter, chapter, Society, College, University, technical skills, open source, innovation, entrepreneurship, open source development, oss, open source software, technology, professional coders, projects, commercial projects, non-commercial projects, skills, creativity, join iosd, expert training, mentorship">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/stack-interface.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/socicon.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flickity.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/iconsmind.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/jquery.steps.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,400i,500,600,700%7CMerriweather:300,300i"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Maven+Pro" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-103189427-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-103189427-1');
</script>
</head>
<body>
<div class="nav-container sticky-top">
<div class="bar bar--sm visible-xs bg--white bar--absolute collapse sticky-top">
<div class="container-fluid">
<div class="row">
<div class="col-3 col-md-2">
<a href="index.html">
<img class="logo logo-dark" alt="logo" src="img/iosd/IOSD-logo.png" />
<img class="logo logo-light" alt="logo" src="img/iosd/IOSD-logo.png" />
<!--<img class="logo logo-dark" alt="logo" src="img/logo-dark.png" />-->
<!--<img class="logo logo-light" alt="logo" src="img/logo-light.png" />-->
</a>
</div>
<div class="col-9 col-md-10 text-right">
<a href="#" class="hamburger-toggle" data-toggle-class="#menu1; hidden-xs">
<i class="icon stack-interface stack-menu"></i>
</a>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</div>
<div class="search header-nav-main header-nav-main-effect-1 header-nav-main-sub-effect-1">
<nav id="menu1" class="bar bar--sm bar-1 bg--white hidden-xs bar--absolute collapse sticky-top " data-scroll-class="100px:pos-fixed">
<div class="container-fluid px-3">
<div class="row" >
<div class="col-lg-1 col-md-1 text-center hidden-xs px-0 mx-0" >
<div class="bar__module px-0 mx-0" >
<a href="index.html" id="logoCenter" >
<img class="logo logo-dark px-0 mx-0" alt="logo" src="img/iosd/IOSD-logo.png" />
</a>
</div>
<!--end module-->
</div>
<div class="col-lg-9 col-md-8 text-center text-center-xs text-center-sm text-center-md text-center-lg text-center-xl mx-0 px-4">
<div class="bar__module collapse">
<ul class="menu-horizontal text-center px-4 mx-0">
<li class="dropdown text-center">
<span class="dropdown__trigger">About</span>
<div class="dropdown__container text-left">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-2 col-md-4">
<ul class="menu-vertical">
<li>
<i class="fa fa-angle-right"></i>
<a href="mission.html">Mission & Vision</a>
</li>
<li>
<i class="fa fa-angle-right"></i>
<a href="core-values.html">Core Values</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="timeline.html">Timeline</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="leadership.html">IOSD Leadership</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="goals.html">Student Chapter Goals </a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="ourPartners.html">Our Partners</a>
</li>
</ul>
</div>
<!--end dropdown content-->
</div>
<!--end row-->
</div>
</div>
<!--end dropdown container-->
</li>
<li class="dropdown text-center">
<span class="dropdown__trigger">Student Life</span>
<div class="dropdown__container text-left">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-md-5">
<ul class="menu-vertical">
<li><i class="fa fa-angle-right"></i>
<a href="benefits-overview.html">Overview</a>
</li>
<li class="dropdown">
<span class="dropdown__trigger">
<i class="fa fa-angle-right"></i>
Member Portal</span>
<div class="dropdown__container">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-sm-3">
<ul class="menu-vertical">
<li class="dropdown">
<span class="dropdown__trigger">
<i class="fa fa-angle-right"></i>
E-Resource</span>
<div class="dropdown__container">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-sm-3">
<ul class="menu-vertical">
<li><i class="fa fa-angle-right"></i>
<a href="assignments.html">
Assignments
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="modules.html">
Modules
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="lectures.html">
Lectures
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="find_my_project.html">
Find My Project
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="make_my_cv.html">
Make My CV
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="placement_cell.html">
Placement Cell
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="kut_my_link.html">
Kut My Link
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="activites.html">Activities</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="discounts.html">Exclusive discount and Freebies</a>
</li><li><i class="fa fa-angle-right"></i>
<a href="exclusive-initiatives.html">Exclusive Initiative</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="studentChapter.html">Create IOSD Student
Chapter</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="list-student-chapter.html">List of Student
Chapters</a>
</li>
<!-- <li><i class="fa fa-angle-right"></i>
<a href="/">WALL OF FAME</a>
</li> -->
</ul>
</div>
<!--end dropdown content-->
</div>
<!--end row-->
</div>
</div>
<!--end dropdown container-->
</li>
<li>
<a href="projects.html">Projects</a>
</li>
<li>
<a href="events.html">Events</a>
</li>
<!-- <li>
<a href="/">Member Portal</a>
</li> -->
<li class="dropdown text-center">
<span class="dropdown__trigger">Member Portal
</span>
<div class="dropdown__container text-left">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-md-5">
<ul class="menu-vertical">
<li class="dropdown">
<span class="dropdown__trigger">
<i class="fa fa-angle-right"></i>
E-Resources</span>
<div class="dropdown__container">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-sm-3">
<ul class="menu-vertical">
<li><i class="fa fa-angle-right"></i>
<a href="assignments.html">
Assignments
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="modules.html">
Modules
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="lectures.html">
Lectures
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="find_my_project.html">Find My Project</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="make_my_cv.html">Make My CV</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="placement_cell.html">Placement Cell</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="kut_my_link.html">Kut My Link</a>
</li>
<!-- <li><i class="fa fa-angle-right"></i>
<a href="/">WALL OF FAME</a>
</li> -->
</ul>
</div>
<!--end dropdown content-->
</div>
<!--end row-->
</div>
</div>
<!--end dropdown container-->
</li>
<li>
<a href="wall_of_fame.html">Wall of Fame
</a>
</li>
<li>
<a href="https://placementsaga.com">PlacementSaga <sup class="menu-sup">New</sup>
</a>
</li>
<li>
<a href="placement_cell.html">Placement Cell
</a>
</li>
</ul>
</div>
<!--end module-->
</div>
<div class="col-lg-2 col-md-3 pr-1 pl-0 mx-0 no-wrap">
<div class="bar__module">
<a class="btn btn--sm ml-1 type--uppercase mr-1 " href="http://member.iosd.tech">
<span class="btn__text">
Login
</span>
</a>
<a class="btn btn--sm ml-1 mr-1 btn--primary type--uppercase my-1" target="_blank" href="https://registrations.iosd.tech/">
<span class="btn__text">
JOIN IOSD
</span>
</a>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</nav>
</div>
</div>
<div class="main-container">
<section class="text-center">
<div class="container">
<div class="row">
<div class="col-md-8 col-lg-6">
<h1 class="ac-mar-tx">List of Student Chapters</h1>
<p class="lead mar-sz">
An innovative collective of like-minded folks making useful and enduring technology
products
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/dtu.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Delhi Technological University</h2>
</div>
<p class="lead">
The journey of a thousand miles begin with a single step. One of earliest engineering
colleges in India, Delhi Technological University hosted the first-ever chapter of
IOSD.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosddtu">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/nsit.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Netaji Subhas University of Technology</h2>
</div>
<p class="lead">
With the focus on creating job-makers rather than job-seekers, Netaji Subhash
University of Technology hosts an active and successful chapter of IOSD.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdnsut">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/Abv iiitmg.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Atal Bihari Vajpayee IIIT, Gwalior</h2>
</div>
<p class="lead">
An eclectic mix of technology and management skills, ABV-IIITM chapter of IOSD is adept
at fulfilling the requirements of budding technologists and managers.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdiiitmg">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/igdtu.JPG" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Indira Gandhi Delhi Technical University for Women</h2>
</div>
<p class="lead">
The IGDTUW chapter of IOSD is a breath of fresh air flowing with women coders in a
technological world overwhelmed by men.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdigdtuw">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/nitk.JPG" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>National Institute of Technology, Kurukshetra</h2>
</div>
<p class="lead">
National Institute of Technology, Kurukshetra is a public engineering institute located in Kurukshetra. In December 2008, it was accredited with the status of Institute of National Importance. It is one of the 30 National Institutes of Technology established and administered by Government of India</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdnitk">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/dce.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Dronacharya College of Engineering</h2>
</div>
<p class="lead">
Viding Horizons across Delhi - NCR, students at DCE, Gurgaon are incorporated to the community.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosddce">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/mait.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Maharaja Agrasen Institute of Technology</h2>
</div>
<p class="lead">
The MAIT chapter of IOSD has trained seniors teaching beginners in a beautiful give and
take of the most precious treasure – knowledge.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdmait">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/jadavpur.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Jadavpur University</h2>
</div>
<p class="lead">
First chapter in Kolkata to expand IOSD's Horizons.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdju">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/msit.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Maharaja Surajmal Institute of Technology</h2>
</div>
<p class="lead">
You don't know what you are capable of doing until you begin. The MSIT chapter of IOSD
is operative and moving forward bit by bit.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/IOSDmsit">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/SRM.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>SRM University</h2>
</div>
<p class="lead">
SRM Institute of Science and Technology, bring together the edges of NCR closer to delhi and continues interaction gives the student an edge over others.</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdsrmist">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/maitreyi.JPG" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Maitreyi College, Delhi University</h2>
</div>
<p class="lead">
The central university of Delhi hosts a lucrative chapter of IOSD to help the flourish.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdmaitreyi">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/manipal.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Manipal Institute of Technology, Manipal</h2>
</div>
<p class="lead">
Growing by leaps and bounds, the members at MIT, Manipal chapter of IOSD are starting to
prove their worth as techies through and through.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdmit">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/uiet.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>University Institute of Engineering and Technology, Kurukshetra University</h2>
</div>
<p class="lead">
The land of Challengers join the regime to create a new aggression in competitiveness at IOSD.
</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosduietku">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<!-- <section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/AU.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Ahemdabad University</h2>
</div>
<p class="lead">
Ahmedabad University is a non-profit university set up in 2009 by the Ahmedabad Education Society. Ahmedabad University offers students a liberal education focused on research and interdisciplinary learning. With IOSD Expanding it's horizons within the students are now introduced to open source community. </p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdau">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
-->
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/smvdu.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Shri Mata Vaishno Devi University, Jammu and Kashmir</h2>
</div>
<p class="lead">
The Shri Mata Vaishno Devi University, commonly referred to as SMVDU, is a university on an 470-acre campus located near Katra, Jammu and Kashmir. IOSD is reaching out to the extreme corners of the nation to promote collaborative learning.</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdsmvdu">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/gtbit.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Guru Tegh Bahadur Institute of Technology</h2>
</div>
<p class="lead">
Guru Tegh Bahadur Institute of Technology is an Indian engineering college affiliated to Guru Gobind Singh Indraprastha University. It was established in 1999 by the Delhi Sikh Gurudwara Management Committee. IOSD GTBIT chapter has been the one of the founding chapters of the IOSD at Delhi - NCR and bring cultural diversity to the community. <ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdgtbit">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/adgitm.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Dr. Akhilesh Das Gupta Institute of Technology & Management</h2>
</div>
<p class="lead">
Dr. Akhilesh Das Gupta Institute of Technology and Management, formerly known as Northern India Engineering College, is a part IOSD Delhi Region connecting the northern and southern part of the NCT, India.</p>
<ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdadgitm">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<div class="col-md-6 col-lg-6">
<img alt="Image" id="size-1" class="border--round box-shadow-wide" src="img/chapters/cgc.jpg" />
</div>
<div class="col-md-6 col-lg-6">
<div class="switchable__text">
<div class="text-block">
<h2>Chandigarh Group of Colleges</h2>
</div>
<p class="lead">
The Chandigarh Group of Colleges (or CGC) are the educational institutions located in Sahibzada Ajit Singh Nagar district of Punjab in short distance from cities of Chandigarh and Mohali, With IOSD student chapter defined to cater students from both the cities on their journey in collaborative learning. <ul class="social-list list-inline list--hover">
<li>
<a href="mailto:[email protected]">
<i class="socicon socicon-googlegroups icon icon--xs"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/iosdcgc">
<i class="socicon socicon-facebook icon icon--xs"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable switchable--switch feature-large">