forked from IOSD/iosd-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1212 lines (1039 loc) · 50 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
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>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<title>IOSD-International Organisation of Software Developers</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="IOSD, International Organisation of Software Developers is the largest development based student organization in North India. IOSD hosted India’s largest hackathon- HackDTU as a part of their annual technical festival-Synergy.">
<meta name="author" content="themecube">
<!-- viewport settings -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/headhesive.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/switcher.core.min.css">
<link rel="stylesheet" href="css/timeline.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
<!-- <<li></li>nk id="main-style" rel="stylesheet" href="css/color/yellow.css"> Choose your color, green, blue, yellow, red, darkblue, purple -->
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.3.0/css/mdb.min.css">-->
<!--<script href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.3.0/js/mdb.min.js"></script>-->
<!-- Font -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!-- Favicon -->
<link rel="shortcut icon" href="img/title-bar.png">
<meta name="keywords" content=" IOSD, IOSD DTU, Delhi Technological University, DTU, Free Technical Society, Tech Society, SD DTU, Software Developers, Student Organisation, Development, Code, Android, IOS, Machine Learning, Artificial Intelligence, Web Development, Arduino Interfacing, hybrid technologies, Internet of things, IoT, projects, hackathon, SIG, API discussions, UI, UX, competitions, Aapka update, Barbie, Aztek, Python, Invest Unbiased, automation, Synergy, Techfest, HackDTU, hack, build, display, deploy, Codewar, Finquest, team, budding developers, Technical Festival, Innovation, Learn, collaborate, startup, student chapters, IOSD MAIT, IOSD VIT, IOSD NIEC">
</head>
<body>
<!-- PRELOADING -->
<div id="preload">
<div class="preload">
<div class="loader">
Loading...
</div>
</div>
</div>
<!-- NAVIGATION -->
<header class="banner">
<nav class="navbar navbar-custom" role="navigation">
<!-- We use the fluid option here to avoid overriding the fixed width of a normal container within the narrow content columns. -->
<div class="container">
<div data-scroll-header class="navbar-header">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index-2.html"><img src="img/IOSD-logo.png" alt="IOSD Logo"></a>
</div>
<div class="collapse navbar-collapse" id="nav">
<ul class="nav navbar-nav navbar-right nav-effect uppercase">
<li><a data-scroll href="#about"><span data-hover="About">About</span></a></li>
<li><a data-scroll href="#program"><span data-hover="program">program</span></a></li>
<li><a data-scroll href="#projects"><span data-hover="projects">projects</span></a></li>
<li><a data-scroll href="#events"><span data-hover="events">events</span></a></li>
<li><a data-scroll href="#contact"><span data-hover="contact">contact</span></a></li>
<li><a data-scroll href="maintanence.html"><span data-hover="login">login</span></a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
</header>
<!-- TOP -->
<section id="top" data-stellar-background-ratio="0.5">
<div class="entry layer-top">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="uppercase mobile-50">Developers<br>of Tomorrow</h1>
<p class="lead uppercase">Biggest development based Student Organisation in North India</p>
<a class="button button-big button-light" href="#">view more</a>
</div>
</div>
</div>
</div>
<a id="showHere"></a>
</section>
<!-- ABOUT US -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="uppercase">about us</h2>
<p class="lead uppercase">BIGGEST DEVELOPMENT based student organisation IN NORTH INDIA</p>
</div>
<div class="col-lg-12">
<img class="img-responsive" src="img/about-banner.jpg" alt="IOSD DTU">
<h3></h3>
<div class="row" style="text-align: justify">
<p class="lead col-lg-4">We at IOSD, believe in enriching the development environment in the
country. We plan to provide a platform for developers to come together and create projects,
discuss ideas and learn in a non-competitive environment. We provide mentorship and
collaborations on projects in both public and private sector. </p>
<p class="lead col-lg-4">Our aim is to create an environment for developers to prosper and be able
to successfully implement ideas for it's not about having ideas but making ideas happen. We
started off as a group of ANDROID TECHIES with our common passion for development. This passion
drives us and helped us succeed in making our movement in development to international level.
</p>
<p class="lead col-lg-4">IOSD is the only student-organization that is completely development
oriented. At first,
students are given classes by senior members so that all the students can get familiar with the
new development culture. Then, projects are given in teams so that they get acquainted with the
requirements of working in a team, as well as get going and start developing on their own!</p>
</div>
</div>
</div>
</div>
</section>
<section style="width: 100%; background-color: #eeeeee">
<div class="container">
<div class="row">
<!--<h3>Our Aim</h3>-->
<div class="col-lg-12 margin-top-5">
<h2 class="uppercase">Our Aim</h2>
<!--<p class="lead uppercase">BIGGEST DEVELOPMENT student-organisation IN NORTH INDIA</p>-->
</div>
<div id="services" class="col-lg-12">
<div class="service">
<i class="fa fa-3x fa-desktop"></i>
<h3 class="uppercase">Platform</h3>
<p>Providing a platform for Development
enthusiasts to enrich their skills via
yielding projects, workshops, forums,
etc. helping them learn the process of
development over a longer period of
time.</p>
<!--<a class="button button-dark" href="#">read more</a>-->
</div>
<div class="service">
<i class="fa fa-3x fa-users"></i>
<h3 class="uppercase">Team Up</h3>
<p>Teaming up together to build
Applications using different Hybrid
technologies such as Machine Vision,
Arduino Interfacing, Internet of Things,
Machine Learning, Artificial Intelligence
etc.</p>
<!--<a class="button button-dark" href="#">read more</a>-->
</div>
<div class="service">
<i class="fa fa-3x fa-calendar-o"></i>
<h3 class="uppercase">Events</h3>
<p>Promoting the members to adapt to the
industrial environment of delivering the best
possible applications in a limited time
period by organising Hackathons.</p>
<!--<a class="button button-dark" href="#">read more</a>-->
</div>
<div class="service">
<i class="fa fa-3x fa-tasks"></i>
<h3 class="uppercase">Projects</h3>
<p>Integrating the projects with new
international industrial technologies by
prime organizations along with bringing together diverse ideas from
students in various fields of engineering
to work upon together in a team. </p>
<!--<a class="button button-dark" href="#">read more</a>-->
</div>
</div>
</div>
</div>
</section>
<!-- PROGRAM -->
<section id="program">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="uppercase">program</h2>
<p class="lead uppercase">Knowledge can't be gained without practical application. IOSD conducts events all across
the year to help studetns get insights of the latest technologies in industry.</p>
</div>
<!-- program slider -->
<div class="col-lg-12 programs">
<!--program 1 -->
<div class="program">
<img class="img-responsive" src="img/sig.jpg" alt="SIG">
<div>
<div class="icon">
<i class="fa fa-3x fa-pencil"></i>
</div>
<h3 class="uppercase">SIGS</h3>
<p>Second and third year members take workshops and
special classes for the juniors teaching them technical
skills like coding in various languages, web development
and android development all throughout the year.</p>
<!--<a class="button button-light popup-html" href="sample-program.html">read more</a>-->
</div>
</div>
<!--program 2 -->
<div class="program">
<img class="img-responsive" src="img/hackathono.jpg" alt="Hackathon">
<div>
<div class="icon">
<i class="fa fa-3x fa-home"></i>
</div>
<h3 class="uppercase">Mock<br>Hackthons</h3>
<p>Hackathons are events that give an industrial
environment for application development by
encouraging Developers to bring out their best
application in limited time period. We will be
conducting mock Hackathons for such essential
experience.</p>
<!--<a class="button button-light popup-html" href="sample-program.html">read more</a>-->
</div>
</div>
<!--program 3 -->
<div class="program">
<img class="img-responsive" src="img/api.jpg" alt="API Discussions">
<div>
<div class="icon">
<i class="fa fa-3x fa-stethoscope"></i>
</div>
<h3 class="uppercase">API<br>Discussions</h3>
<p>Application Program Interface is set of routines,
protocols, and tools for building software applications.
Organizations update these regularly and new features
are added or discontinued.We will ensure that we keep
track of new platforms introduced, which is essential.</p>
<!--<a class="button button-light popup-html" href="sample-program.html">read more</a>-->
</div>
</div>
</div>
</div>
<div class="row">
<br>
<!-- program slider -->
<div class="col-lg-12 programs">
<!--program 1 -->
<div class="program">
<img class="img-responsive" src="img/discussion.jpg" alt="Discussion Forum">
<div>
<div class="icon">
<i class="fa fa-3x fa-pencil"></i>
</div>
<h3 class="uppercase">DISCUSSION<br>FORUM</h3>
<p>
Software Development doesn’t have that much
literature to help us during errors, logical failures
etc.. Online Websites like github.com, stackoverflow.com
etc. don’t provide a specific solution to our
problem. At IOSD we plan to work as a team helping
each other encounter such problems.</p>
<!--<a class="button button-light popup-html" href="sample-program.html">read more</a>-->
</div>
</div>
<!--program 2 -->
<div class="program">
<img class="img-responsive" src="img/coding.jpg" alt="UI/UX Development">
<div>
<div class="icon">
<i class="fa fa-3x fa-home"></i>
</div>
<h3 class="uppercase">UI/UX<br>Development</h3>
<p>Enhancing Students to work on more than one IDE and
developing new UI interface for application development
and creating his/her own independent libraries.</p>
<!--<a class="button button-light popup-html" href="sample-program.html">read more</a>-->
</div>
</div>
<!--program 3 -->
<div class="program">
<img class="img-responsive" src="img/monthly-comp.jpg" alt="Monthly Competitions">
<div>
<div class="icon">
<i class="fa fa-3x fa-stethoscope"></i>
</div>
<h3 class="uppercase">Monthly<br>Competitions</h3>
<p>Monthly coding competitions among the members to
hone their technical skills in a healthy environment.
Competitions are conducted in ACPC , CodeJam and Online Judge Formats</p>
<!--<a class="button button-light popup-html" href="sample-program.html">read more</a>-->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- MILESTONE -->
<!-- <div id="milestone">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<div class="row">
<div class="fact col-xs-12 col-md-3 col-lg-3">
<p class="timer" data-to="25" data-speed="10000"></p>
<p>program</p>
<i class="fa fa-2x fa-cubes"></i>
</div>
<div class="fact col-xs-12 col-md-3 col-lg-3">
<p class="timer" data-to="1453" data-speed="10000"></p>
<p>children</p>
<i class="fa fa-2x fa-child"></i>
</div>
<div class="fact col-xs-12 col-md-3 col-lg-3">
<p class="timer" data-to="570" data-speed="10000"></p>
<p>charitable</p>
<i class="fa fa-2x fa-users"></i>
</div>
<div class="fact col-xs-12 col-md-3 col-lg-3">
<p class="timer" data-to="19685" data-speed="10000"></p>
<p>donation</p>
<i class="fa fa-2x fa-usd"></i>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!-- STORIES -->
<section id="projects">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="uppercase">Projects</h2>
<p class="lead uppercase"></p>
</div>
<div class="col-lg-12 stories">
<div class="story">
<img class="img-responsive" src="img/aapkaupdate.jpg" alt="Aapka Update">
<div>
<div class="icon">
<i class="fa fa-2x fa-pencil"></i>
</div>
<h3 class="uppercase">Aapka<br>Update</h3>
<p>Developed an Android Application for Delhi police to track and solve queries of Complainants on
their respective FIR, reducing the wastage of time and increasing accountability.</p>
<!--<a class="button button-light popup-html" href="sample-story.html">read more</a>-->
</div>
</div>
<div class="story">
<img class="img-responsive" src="img/aztek.png" alt="Aztek">
<div>
<div class="icon">
<i class="fa fa-2x fa-desktop"></i>
</div>
<h3 class="uppercase">Aztek <br></h3>
<p>Python based GUI application for end-to-end management of field verification process.
<br>
</p>
<!--<a class="button button-light popup-html" href="sample-story.html">read more</a>-->
</div>
</div>
<div class="story">
<img class="img-responsive" src="img/invest-image.png" alt="Invest Unbiased">
<div>
<div class="icon">
<i class="fa fa-2x fa-dashboard"></i>
</div>
<h3 class="uppercase">Invest<br>Unbaised</h3>
<p>Developed an investment portofolio predictor based upon risk profile of user.</p>
<!--<a class="button button-light popup-html" href="sample-story.html">read more</a>-->
</div>
</div>
<div class="story">
<img class="img-responsive" src="img/barbie2.png" alt="Barbie">
<div>
<div class="icon">
<i class="fa fa-2x fa-home"></i>
</div>
<h3 class="uppercase">Barbie</h3>
<p>Developed a home automation application for day to day work.</p>
<!--<a class="button button-light popup-html" href="sample-story.html">read more</a>-->
</div>
</div>
</div>
<!--<div class="col-lg-7">-->
<!--<div id="donate">-->
<!--<p class="lead uppercase">You’ve helped us raise a staggering</p>-->
<!--<span class="pledged">$53.426</span>-->
<!--<div class="progress">-->
<!--<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0"-->
<!--aria-valuemax="100" style="width: 70%;">-->
<!--<span class="sr-only">60% Complete</span>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-5 text-right">-->
<!--<p class="lead text-right">Pellentesque eu malesuada nisi. Phasellus eget ornare arcu, et condimentum-->
<!--arcu. Phasellus vitae posuere nisi, at venenatis velit. Morbi lacinia lacus non consectetur-->
<!--accumsan.</p>-->
<!--<a class="button button-big button-dark popup-html" href="donate.html">donate</a>-->
<!--</div>-->
</div>
</div>
</section>
<!-- GALLERY -->
<div id="gallery">
<div class="wrap">
<a class="image-link" href="img/aapkaupdate.jpg"
title="<h4>Aapka Update</h4>Developed an Android Application for Delhi police to track and solve queries of Complainants on their respective FIR, reducing the wastage of time and increasing accountability.">
<img class="img-responsive" src="img/aapkaupdate.jpg" alt="Aapka Update">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/2.jpg"
title="<h4>Engifest 2017</h4>Engifest is the annual Cultural festival of Delhi Technological University. Designed an Android application for managing the event registrations.">
<img class="img-responsive" src="img/2.jpg" alt="Engifest, DTU">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/3.jpg"
title="<h4>Task Network</h4>Developed an Android Application for the Prime Ministers Office to help people secure part time jobs over a platform to increase employability within the nation.">
<img class="img-responsive" src="img/3.jpg" alt="Task Network">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/synergygo.jpg"
title="<h4>Synergy Go</h4>Developed an Android Application for end-to-end management of field verification process.">
<img class="img-responsive" src="img/synergygo.jpg" alt="Synergy Go">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/repi.jpg"
title="<h4>Repignite</h4>Developed an Android Application for end-to-end management of field verification process.">
<img class="img-responsive" src="img/repi.jpg" alt="Repignite">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/6.jpg"
title="<h4>Holler</h4> A User management Portal for 3.5 lakh people spread over a state for academic requirements over Android, IOS and Web Application.">
<img class="img-responsive" src="img/6.jpg" alt="Holler">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/7.jpg"
title="<h4>Synergy'17</h4>Synergy’17 is the annual technical festival organised under the aegis of Software Developers DTU. Designed the website and web app for managing event registrations.">
<img class="img-responsive" src="img/7.jpg" alt="Synergy">
<div class="plus"></div>
</a>
</div>
<div class="wrap">
<a class="image-link" href="img/11.jpg"
title="<h4>GMA IoT</h4>Developed an Android application for monitoring and calculating Data from a custom sensor board over internet mpus nisl id lectus varius.">
<img class="img-responsive" src="img/11.jpg" alt="GMA IoT">
<div class="plus"></div>
</a>
</div>
</div>
<section id="timeline">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="uppercase">Our Journey</h2>
<p class="lead uppercase">From a group of Android Techies to North India's Biggest Student Organisation.</p>
</div>
</div>
</div>
<!--<h3 class="uppercase">Our Journey<span class="border"></span></h3>-->
<div class="demo-card-wrapper">
<div class="demo-card demo-card--step1">
<div class="head">
<div class="number-box">
<span>2015</span>
</div>
<h2 style="line-height:25px;">Small Team with Big Dreams</h2>
</div>
<div class="body">
<p style="lo">A Core-Team of 5 Android Techies started its operations to promote Software Development
across different streams in College.</p>
<img src="img/banner-step-1.jpg" alt="Graphic">
</div>
</div>
<div class="demo-card demo-card--step2">
<div class="head">
<div class="number-box">
<span>August'16</span>
</div>
<h2 style="line-height:25px;">First Orientation</h2>
</div>
<div class="body">
<p>An orientation was organised to let students know more about the student-organisation and the things
that they will experience in SD-DTU. It received an overwhelming response from students of all
streams in the college and had witnessed the maximum footfall.</p>
<img src="https://cdn.rawgit.com/IOSD/iosd.github.io/b0d790b3/images/about4.jpg" style="width: 100%;
height: 55%;">
</div>
</div>
<div class="demo-card demo-card--step3">
<div class="head">
<div class="number-box">
<span>December'16</span>
</div>
<h2 style="line-height:25px;">Era Of Projects</h2>
</div>
<div class="body">
<p>The students of SD-DTU along with the senior members completed various projects in different fields.
17 web based projects and 6 android projects were completed by 70 students.</p>
<img src="img/IMG_0013.jpg" alt="Graphic">
</div>
</div>
<div class="demo-card demo-card--step4">
<div class="head">
<div class="number-box">
<span>Feb'17</span>
</div>
<h2>SYNERGY'17</h2>
</div>
<div class="body">
<p>SYNERGY'17 went on to be the greatest Tech-Fest North India ever witnessed. Various competitons
were held in DTU with students participating from all across India.Big Tech giants like Cisco were
the Title Sponsors. HackDTU,A 24 hour Hackathon bacame a huge attraction for all Developers across
Delhi-NCR.</p>
<img src="img/timeline.jpg" alt="Graphic" style="
height: 60%;">
</div>
</div>
<div class="demo-card demo-card--step5">
<div class="head">
<div class="number-box">
<span>May'17</span>
</div>
<h2>Making of IOSD</h2>
</div>
<div class="body">
<p>After acheiving great Heights in the first year itself, SD-DTU went on to expand itself in various
colleges across India and led to the formation of International Organisation of Software
Developers.</p>
<img src="img/title.png" alt="Graphic">
</div>
</div>
</div>
</section>
<div class="jumbotron">
<div class="container">
<h1>Fund Your Startup</h1>
<p>We here at IOSD understand the importance of great ideas and are willing to provide funds to help talented
minds to implement their ideas.</p>
<!--<p><a class="button button-big button-light" href="#contact" role="button" style="background-color: #46b8e9">Learn more »</a></p>-->
</div>
<div class="row" style="background-color: #eeeeee ; margin: auto; text-align: center;">
<div class="col-md-3 col-centered col-md-offset-1 blue-hover">
<div class="icon">
<i class="fa fa-3x fa-pencil-square-o"></i>
</div>
<h2>Apply</h2>
<p><br>Startups with new ideas and product innovations can apply Bi-Yearly for funding.</p>
</div>
<div class="col-md-3 col-centered blue-hover">
<div class="icon">
<i class="fa fa-3x fa-desktop"></i>
</div>
<h2>Present</h2>
<p><br>After going through a shortlisting process the applicants present their ideas to our Innovations
Team.</p>
</div>
<div class="col-md-3 col-centered blue-hover">
<div class="icon">
<i class="fa fa-3x fa-money"></i>
</div>
<h2>Get Funded</h2>
<p><br>Startups with the best ideas are allocated funds ranging from 1-5 Lakhs for initial growth.</p>
</div>
</div>
</div>
<style>
.blue-hover:hover {
background-color: #eeeeee;
color: black;
font-weight: 200;
/*border-radius: 30px;*/
}
.blue-hover {
padding: 30px;
margin-right: 40px;
margin-top: 50px;
background-color: white
}
</style>
<!-- EVENTS -->
<br>
<section id="events">
<div class="container">
<h3>Upcoming Events</h3>
<!-- events slider -->
<div id="upcoming-events">
<!-- event 1 -->
<div class="event">
<div class="event-inner">
<div class="icon">
<i class="fa fa-3x fa-laptop"></i>
</div>
<div class="description">
<h3>HackDTU 2.0</h3>
<p>The Second Iteration of North India's Largest Hackathon, organised by IOSD </p>
<span class="details"><i class="fa fa-lg fa-map-marker"></i> DTU</span>
<span class="details"><i class="fa fa-lg fa-clock-o"></i>October 13-14'17</span>
<span class="details"><a href="http://hackdtu.tech"><i class="fa fa-lg fa-link"></i>hackdtu.tech</a></span>
</div>
</div>
</div>
<!-- event 2 -->
<div class="event">
<div class="event-inner">
<div class="icon">
<i class="fa fa-3x fa-pencil"></i>
</div>
<div class="description">
<h3>Internship Fair</h3>
<p>Opportunity for all students to grab an intern at various companies.</p>
<span class="details"><i class="fa fa-lg fa-map-marker"></i> DTU</span>
<span class="details"><i class="fa fa-lg fa-clock-o"></i>October 13'17</span>
</div>
</div>
</div>
<div class="event">
<div class="event-inner">
<div class="icon">
<i class="fa fa-3x fa-calendar-o"></i>
</div>
<div class="description">
<h3>Code in Less</h3>
<p>Code with minimum characters, takes it all.</p>
<span class="details"><i class="fa fa-lg fa-pencil"></i> DTU</span>
<span class="details"><i class="fa fa-lg fa-clock-o"></i>October 14'17</span>
<!--<span class="details"><a href="http://hackdtu.tech"><i class="fa fa-lg fa-link"></i>hackdtu.tech</a></span>-->
</div>
</div>
</div>
<!--event 3-->
</div>
</div>
<br>
<br>
</section>
<!--<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">-->
<style>
/*body, html, main {*/
/*!* important *!*/
/*height: 100%;*/
/*}*/
.cd-fixed-bg {
height: 100vh;
min-height: 500px;
}
.cd-fixed-bg.cd-bg-1 {
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center center;
/*background-color: #46b8e9;*/
background-image: url('img/layer-100.jpg');
box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, .4);
}
.layer-100 {
color: black;
text-align: center;
padding: 10%
}
/*.heading-dream > span {*/
/*background: url(http://www.circlek.org/Libraries/2013_branding_design_elements/graphics_CKI_horizontal_stripesorange_CMYK.sflb.ashx) repeat;*/
/*-webkit-background-clip: text;*/
/*background-clip: text;*/
/*-webkit-text-fill-color: transparent;*/
/*-webkit-animation: aitf 20s linear infinite;*/
/*}*/
/*@-webkit-keyframes aitf {*/
/*0% {*/
/*background-position: 0% 50%;*/
/*}*/
/*100% {*/
/*background-position: 100% 50%;*/
/*}*/
/*}*/
</style>
<div>
<div class="cd-fixed-bg cd-bg-1">
<div class="container layer-100">
<h1 style="color:black; text-align:center; font-size:600%;" class="heading-dream">
<span>Dream Project</span>
<span>Initiative</span>
</h1>
<h2>Inter IOSD Chapter Challenge,
All the chapters provide a
detailed plan for a research
project. The Best project idea
gets full funding for the
research.</h2>
<!--<br><br><br><br><br><br><br><br>-->
</div>
</div>
</div>
<!-- PAGE SPONSORS -->
<section class="page-section" id="sponsors" style="background: white;">
<div class="container">
<div class="col-lg-12">
<h2 class="uppercase">Sponsors</h2>
<p class="lead uppercase">Wanna Become One ?</p>
</div>
<!--<h1 class="section-title">-->
<!--<span data-animation="flipInY" data-animation-delay="100" class="icon-inner"><span class="fa-stack"><i class="fa rhex fa-stack-2x"></i><i class="fa fa-thumbs-up fa-stack-1x"></i></span></span>-->
<!--<span data-animation="fadeInRight" data-animation-delay="200" class="title-inner">Sponsors <small> / Powerhouse of Synergy'17</small></span>-->
<!--</h1>-->
<div class="row" style="text-align: center;">
<div class="col-md-12">
<a href="http://www.cisco.com/" target="_blank"><img src="img/sponsor/300x300.jpg" alt="Cisco"/></a>
</div>
</div>
<div class="row" style="text-align: center;">
<div class="col-md-4">
<a href="http://www.jio.com/" target="_blank"><img src="img/sponsor/275x275x1.jpg" alt="JIO"/></a>
</div>
<div class="col-md-4">
<a href="http://www.restdb.io/" target="_blank"><img src="img/sponsor/275x275x2.jpg" alt="Restdb"/></a>
</div>
<div class="col-md-4">
<a href="http://aztek.in/" target="_blank"><img src="img/sponsor/275x275x3.jpg"
alt="Synergy Enterprises"/></a>
</div>
</div>
<div class="row" style="text-align: center;">
<div class="col-md-3">
<a href="http://www.doselect.com/" target="_blank"><img src="img/sponsor/250x250x1.jpg" alt="doselect"/></a>
</div>
<div class="col-md-3">
<a href="http://www.hackerearth.com/" target="_blank"><img src="img/sponsor/250x250x2.jpg"
alt="hackerearth"/></a>
</div>
<div class="col-md-3">
<a href="http://www.digitalocean.com/" target="_blank"><img src="img/sponsor/250x250x3.jpg"
alt="digitalocean"/></a>
</div>
<div class="col-md-3">
<a href="http://www.sendgrid.com/" target="_blank"><img src="img/sponsor/250x250x4.jpg" alt="sendgrid"/></a>
</div>
</div>
<div class="row" style="text-align: center;">
<div class="col-md-2">
<a href="http://www.jetbrains.com/" target="_blank"><img src="img/sponsor/200x200x1.jpg"
alt="jetbrains"/></a>
</div>
<div class="col-md-2">
<a href="http://www.collegemedia.in" target="_blank"><img src="img/sponsor/200x200x2.jpg"
alt="collegemedia"/></a>
</div>
<div class="col-md-2">
<a href="http://www.solindia.co.in/" target="_blank"><img src="img/sponsor/200x200x3.jpg"
alt="solindia"/></a>
</div>
<div class="col-md-2">
<a href="http://www.restdb.io/" target="_blank"><img src="img/sponsor/200x200x4.jpg" alt="startupoint"/></a>
</div>
<div class="col-md-2">
<a href="http://www.shopclues.com/" target="_blank"><img src="img/sponsor/200x200x5.jpg"
alt="shopclues"/></a>
</div>
<div class="col-md-2">
<a href="#"><img src="img/sponsor/200x200x6.jpg" alt="I food You"/></a>
</div>
</div>
<!--<div class="text-center margin-top">-->
<!--<p data-animation="fadeInUp" data-animation-delay="100">-->
<!--Sponsor the most prodigious technical festival, biggest playground for creators and innovators.-->
<!--<br>-->
<!--Interested in sponsoring us? Download our Brochure for sponsorship tiers, shoot us an email for further queries.</p>-->
<!--<p>-->
<!--<a data-animation="flipInY" data-animation-delay="200" href="docs/SD-DTU-Brochure.pdf" target="_blank" class="btn btn-theme"><i class="fa fa-download"></i> Sponsorship Brochure</a><p>-->
<!--<p><a data-animation="flipInY" data-animation-delay="300" href="mailto:[email protected]" style="text-transform: lowercase !important;" class="btn btn-theme"><i class="fa fa-envelope"></i> [email protected]</a></p>-->
<!--</div>-->
</div>
</section>
<!-- /PAGE SPONSORS -->
<style>
#sponsor-form > label {
font-weight: 300;
font-size: 20px;
color: black;
}
#sponsor-form > form {
margin: auto;
text-align: center;
}
#sponsor-form > button {
margin: auto;
margin-bottom: 5%;
/*padding-left: 300px;*/
}
</style>
<section style="background-color: #eeeeee; width: 100%" id="contact">
<div class="container">
<div class="col-lg-12 margin-top-10">
<h2 class="uppercase" style="text-align:center">Create Student Chapter of IOSD at your College</h2>
<!--<p class="lead uppercase">Have an suggestion , query or message. Ping us and we will be happy to reply</p>-->
</div>
<br>
<div class="minimal-form">
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<form id="chapter-form" action="form_handler.php" method="post">
<p>Hi,</p>
<p>We want to open a chapter of IOSD , my
<label for="name">name</label> is
<input type="text" name="name" id="name" minlength="3" placeholder="(your name here)"
required>,</p>
<p>my
<label for="email">email address</label> is
<input type="email" name="email" id="email" placeholder="(your email address)"
required>
, </p>
<p> my
<label for="college">college </label> is
<input type="text" name="college" id="college" placeholder="(your college name)"
required> ,
</p>
<p> and my
<label for="college">phone number </label> is
<input type="number" name="phone" id="phone" placeholder="(your phone number)"
required>
</p>
<p> I have a
<label for="message">message</label> for you,</p>
<p>
<textarea name="message" id="message" placeholder="(your msg here)"
class="expanding"
required></textarea>
</p>
<p>
<button type="submit" style="text-align: center; margin: auto; padding:10px">
<svg version="1.1" class="send-icn" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="36px" viewBox="0 0 100 36" enable-background="new 0 0 100 36" xml:space="preserve">
<path d="M100,0L100,0 M23.8,7.1L100,0L40.9,36l-4.7-7.5L22,34.8l-4-11L0,30.5L16.4,8.7l5.4,15L23,7L23.8,7.1z M16.8,20.4l-1.5-4.3
l-5.1,6.7L16.8,20.4z M34.4,25.4l-8.1-13.1L25,29.6L34.4,25.4z M35.2,13.2l8.1,13.1L70,9.9L35.2,13.2z" />
</svg>
<small>send</small>
</button>
</p>
</form>
</div>
<br>
</div>
</section>
<!--<!– NEWS –>-->
<!--<section id="news">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h2 class="uppercase">news</h2>-->
<!--<p class="lead uppercase">Nullam vulputate lacus quis purus ornare, non vehicula felis mollis.</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="news">-->
<!--<figure class="news-effect">-->