-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
1309 lines (1129 loc) · 49.1 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>
<html>
<head>
<meta charset="utf-8">
<title>Techweek'17-IEEE DTU</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/revolution-slider.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--Color Switcher Mockup-->
<link href="css/color-switcher-design.css" rel="stylesheet">
<!--Color Themes-->
<link id="theme-color-file" href="css/color-themes/index.html" rel="stylesheet">
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<link rel="icon" href="images/favicon.png" type="image/x-icon">
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="theme-color" content="#000" />
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
<style>
.gallery {
max-width: 100%;
min-height: 600px;
margin: 0 auto;
padding: 25px;
background: #fff;
}
.gallery>div {
position: relative;
display: inline-block;
padding: 5px;
}
.gallery>div>img {
display: block;
padding: 25px;
width: 380px;
transition: .1s transform;
transform: translateZ(0);
/* hack */
}
.gallery>div:hover {
z-index: 1;
}
.gallery>div:hover>img {
transform: scale(1.7, 1.7);
transition: .3s transform;
}
.cf:before,
.cf:after {
display: table;
content: "";
line-height: 0;
}
.cf:after {
clear: both;
}
#slider-text {
padding-top: 40px;
display: block;
}
#slider-text .col-md-6 {
overflow: hidden;
}
#slider-text h2 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 400;
font-size: 30px;
letter-spacing: 3px;
margin: 30px auto;
padding-left: 40px;
}
#slider-text h2::after {
border-top: 2px solid #c7c7c7;
content: "";
position: absolute;
bottom: 35px;
width: 100%;
}
#itemslider h4 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 400;
font-size: 12px;
margin: 10px auto 3px;
}
#itemslider h5 {
font-family: 'Josefin Sans', sans-serif;
font-weight: bold;
font-size: 12px;
margin: 3px auto 2px;
}
#itemslider h6 {
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
;
font-size: 10px;
margin: 2px auto 5px;
}
.badge {
background: #b20c0c;
position: absolute;
height: 40px;
width: 40px;
border-radius: 50%;
line-height: 31px;
font-family: 'Josefin Sans', sans-serif;
font-weight: 300;
font-size: 14px;
border: 2px solid #FFF;
box-shadow: 0 0 0 1px #b20c0c;
top: 5px;
right: 25%;
}
#slider-control img {
padding-top: 60%;
margin: 0 auto;
}
@media screen and (max-width: 992px) {
#slider-control img {
padding-top: 70px;
margin: 0 auto;
}
}
.carousel-showmanymoveone .carousel-control {
width: 4%;
background-image: none;
}
.carousel-showmanymoveone .carousel-control.left {
margin-left: 5px;
}
.carousel-showmanymoveone .carousel-control.right {
margin-right: 5px;
}
.carousel-showmanymoveone .cloneditem-1,
.carousel-showmanymoveone .cloneditem-2,
.carousel-showmanymoveone .cloneditem-3,
.carousel-showmanymoveone .cloneditem-4,
.carousel-showmanymoveone .cloneditem-5 {
display: none;
}
@media all and (min-width: 768px) {
.carousel-showmanymoveone .carousel-inner > .active.left,
.carousel-showmanymoveone .carousel-inner > .prev {
left: -50%;
}
.carousel-showmanymoveone .carousel-inner > .active.right,
.carousel-showmanymoveone .carousel-inner > .next {
left: 50%;
}
.carousel-showmanymoveone .carousel-inner > .left,
.carousel-showmanymoveone .carousel-inner > .prev.right,
.carousel-showmanymoveone .carousel-inner > .active {
left: 0;
}
.carousel-showmanymoveone .carousel-inner .cloneditem-1 {
display: block;
}
}
@media all and (min-width: 768px) and (transform-3d),
all and (min-width: 768px) and (-webkit-transform-3d) {
.carousel-showmanymoveone .carousel-inner > .item.active.right,
.carousel-showmanymoveone .carousel-inner > .item.next {
-webkit-transform: translate3d(50%, 0, 0);
transform: translate3d(50%, 0, 0);
left: 0;
}
.carousel-showmanymoveone .carousel-inner > .item.active.left,
.carousel-showmanymoveone .carousel-inner > .item.prev {
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0);
left: 0;
}
.carousel-showmanymoveone .carousel-inner > .item.left,
.carousel-showmanymoveone .carousel-inner > .item.prev.right,
.carousel-showmanymoveone .carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0;
}
}
@media all and (min-width: 992px) {
.carousel-showmanymoveone .carousel-inner > .active.left,
.carousel-showmanymoveone .carousel-inner > .prev {
left: -16.666%;
}
.carousel-showmanymoveone .carousel-inner > .active.right,
.carousel-showmanymoveone .carousel-inner > .next {
left: 16.666%;
}
.carousel-showmanymoveone .carousel-inner > .left,
.carousel-showmanymoveone .carousel-inner > .prev.right,
.carousel-showmanymoveone .carousel-inner > .active {
left: 0;
}
.carousel-showmanymoveone .carousel-inner .cloneditem-2,
.carousel-showmanymoveone .carousel-inner .cloneditem-3,
.carousel-showmanymoveone .carousel-inner .cloneditem-4,
.carousel-showmanymoveone .carousel-inner .cloneditem-5,
.carousel-showmanymoveone .carousel-inner .cloneditem-6 {
display: block;
}
}
@media all and (min-width: 992px) and (transform-3d),
all and (min-width: 992px) and (-webkit-transform-3d) {
.carousel-showmanymoveone .carousel-inner > .item.active.right,
.carousel-showmanymoveone .carousel-inner > .item.next {
-webkit-transform: translate3d(16.666%, 0, 0);
transform: translate3d(16.666%, 0, 0);
left: 0;
}
.carousel-showmanymoveone .carousel-inner > .item.active.left,
.carousel-showmanymoveone .carousel-inner > .item.prev {
-webkit-transform: translate3d(-16.666%, 0, 0);
transform: translate3d(-16.666%, 0, 0);
left: 0;
}
.carousel-showmanymoveone .carousel-inner > .item.left,
.carousel-showmanymoveone .carousel-inner > .item.prev.right,
.carousel-showmanymoveone .carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0;
}
}
</style>
</head>
<body>
<!--Modals-->
<div class="container">
<div id="verilog" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Verilog</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Verilog, standardized as IEEE 1364, is a hardware description language (HDL) used to model electronic systems. It is most commonly used in the design and verification of digital circuits at the register-transfer level of abstraction.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="val" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Valediction</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 30px;">Certificates And Prizes will be distributed.</p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<div class="container">
<div id="ML" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Machine Learning Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 30px;"><b>Bill Gates once said, “A breakthrough in machine learning would be worth ten Microsofts”</b></p>
<p style="font-size: 15px;">Machine Learning is a field which aims to train the computers to learn, without being explicitly programmed. It broadens the avenues of every field, irrespective of its connectivity with the engineering domain. Machine Learning enables the construction of algorithms which can learn and work upon data. These data driven programs open up a plethora of opportunities to work in various fields like Biomedicine, Data Mining, Image Processing and many more. The workshop aims to provide an introduction to Machine Learning and its applications.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="GD" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Graphics Desigining Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Do you feel the urge of bringing your imaginations to life, so those could be seen by others as they are perceived by you? Or do you want to make your own short movie with a stunning poster for promotions? Don’t know where to start from? We are here to help.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="IOT" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>IOT Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Imagine if every electrical device present in your home, office or anywhere you go to runs on the Internet. Imagine if every everyday objects have network connectivity, and are managed by a program sending and receiving data from these devices. Internet of Things is a proposed system to transform this imagination into reality. For the first time ever, IEEE DTU is proud to organize an introductory workshop in this domain. It is a golden opportunity for all the innovative minds out there.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="DS" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Data Structures & Algorithms Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Want to be a proficient coder? then this workshop is for you.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
<div class="container">
<div id="animation" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Animation Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">The technique of photographing successive drawings or positions of puppets or models to create an illusion of movement when the film is shown as a sequence.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="SW" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Solid Work Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Big magnificent buildings like the Burj Khalifa, stylish expensive cars like Porche, or those marvelous contraptions used in factories - these things are not accomplished by the hard work of one single day. An important part of the process of creating these structures and machines is actually designing them. Being able to create sound designs and test them without actually needing to construct them is an integral skill an engineer needs. Now days, this part of the process is done with help of various designing softwares. In this workshop we aim to introduce one such software, Solidworks. Come join us in learning this easy-to-use software, where you can make your dream projects come to life.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="android" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Android(OSS) Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Wherever we look around, things are becoming ‘smarter’. Whether it is your mobile, camera, television, or any other field, intelligent machines are put into use to improve manufacturing and maximize profits. Whether it is research, scientific breakthroughs or a million dollar idea, successful applications are the basic requirement for accomplishing these tasks. The objective of software applications is to minimize human efforts. The workshop aims to provide an introduction to mobile application development, PC software development and open source software development.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="CX" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Current X Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Cramming for exams and having text book knowledge of Artificial Intelligence and Embedded Systems is not enough, if you wish to prepare for corporate life. One needs knowledge of the incidents taking place around the globe and a slew of managerial skills. That's where this workshop comes in. In Current X, we bring you up to date with the latest news around the world and give you a chance to develop many non-technical skills through various skill building exercises like group discussions and guesstimates. We aim to provide an insight into how business works and the reason behind the mantra 'money never sleeps'. So, come join us in this interactive session to grow into an individual who is more than just an engineer.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="wattack" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Wattack Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Amongst all the teaching and exposure to new concepts, WATTACK, the annual quizzing event by IEEE Power and Energy Society, offers a change for some livewire competition (pun intended). The event not only promises to be a test of aptitude in the field of Electrical Circuits, but a refreshing and energetic start to the journey of the student enthusiast and IEEE PES in knowledge enrichment and sharing.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="robo" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Robotics Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">Fresh out of school and just stepping into the unchartered territory of technology and robotics? You need to have an idea of what robotics is first of all. Electronics, robotics and all these other big words? IEEE DTU will try and make these seem simple for you in the TechWeek this year. From simple mechanical bots to line following robots, this workshop will open a whole new area of interest. Starting from scratch to introducing you to the brilliance of Arduino, join us as we reinvent robotics.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="program" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Programming Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 30px;"><b>Code is Creativity. Code is Logic. Code is Beauty.</b></p>
<p style="font-size: 15px;">Irrespective of your branch and domain, programming is one of the most sought after skills in the 21st Century. The objective of this workshop is to develop one’s ability to think in terms of algorithms, which is the mark of a good programmer. It is a golden opportunity for both beginners and budding programmers to hone their skills in coding.</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-14, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div id="WD" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content" style="text-align:center;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="font-size: 40px;"><b>Web Development Workshop</b></h4>
</div>
<div class="modal-body">
<p style="font-size: 15px;">We interact with websites everyday whether it’s for social networking, entertainment, research purposes or online trading of goods and services. Websites have evolved as an integral part of our lives and act as an interface to the charms of the internet. Web-developers are constantly seeking to make the web more interactive, attractive, fast and user-friendly. Web-development skills are in great demand and worth learning. This workshop would provide an insight on how to create interactive websites and introduce you to the basics of HTML, CSS, JavaScript, PHP and MySQL</p>
<p style="font-size: 25px;"><b>Free and Open for All</b></p>
</div>
<div class="modal-footer">
<p style="font-size:30px;text-align:center;"><b>Venue: SPS-13, DTU</b></p>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page-wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- Main Header -->
<header class="main-header">
<!-- Header Lower -->
<div class="header-lower">
<div class="main-box">
<div class="auto-container">
<div class="outer-container clearfix">
</div>
<!--Nav Outer-->
<div class="nav-outer clearfix">
<!-- Main Menu -->
<nav class="main-menu">
<div class="navbar-header">
<!-- Toggle Button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse clearfix">
<ul class="navigation clearfix">
<li> <a href="#">Home</a></li>
<li><a href="#about">About Techweek</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#memcords">Membership Coordinators</a></li>
<li><a href="https://goo.gl/forms/teiJTSrLhiKZ7xOo1">Register</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
<!--Sticky Header-->
<div class="sticky-header">
<div class="auto-container clearfix">
<!--Logo-->
<div class="logo pull-left">
<a href="http://ieeedtu.com/ieeedtu/" target="_blank" class="img-responsive"><img src="images/logo-small.png" alt="" title=""></a>
</div>
<!--Right Col-->
<div class="right-col pull-right">
<!-- Main Menu -->
<nav class="main-menu">
<div class="navbar-header">
<!-- Toggle Button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse clearfix">
<ul class="navigation clearfix">
<li> <a href="#">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#memcords">Membership Coordinators</a></li>
<li><a href="https://goo.gl/forms/teiJTSrLhiKZ7xOo1">Register</a></li>
</ul>
</div>
</nav>
<!-- Main Menu End-->
</div>
</div>
</div>
<!--End Sticky Header-->
</header>
<!--End Main Header -->
<!--Main Slider-->
<section class="main-slider" data-start-height="800" data-slide-overlay="yes">
<div class="tp-banner-container">
<div class="tp-banner">
<ul>
<li data-transition="fade" data-slotamount="1" data-masterspeed="1000" data-thumb="images/main-slider/1.jpg" data-saveperformance="off" data-title="Awesome Title Here">
<img src="images/main-slider/1.jpg" alt="" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<div class="tp-caption sft sfb tp-resizeme" data-x="center" data-hoffset="0" data-y="center" data-voffset="-160" data-speed="1500" data-start="0" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<div class="sub-title">
<h2>IEEE DTU and Coding Blocks</h2>
</div>
</div>
<div class="tp-caption sft sfb tp-resizeme" data-x="center" data-hoffset="0" data-y="center" data-voffset="-90" data-speed="1500" data-start="500" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<h2>Present</h2>
</div>
<div class="tp-caption sft sfb tp-resizeme" data-x="center" data-hoffset="0" data-y="center" data-voffset="-20" data-speed="1500" data-start="500" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<h2>TECHWEEK'17</h2>
</div>
<div class="tp-caption sft sfb tp-resizeme" data-x="center" data-hoffset="15" data-y="center" data-voffset="70" data-speed="1500" data-start="1000" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<div class="time-counter">
<div class="time-countdown clearfix" data-countdown="2017/08/21"></div>
</div>
</div>
</li>
<li data-transition="fade" data-slotamount="1" data-masterspeed="1000" data-thumb="images/main-slider/2.jpg" data-saveperformance="off" data-title="Awesome Title Here">
<img src="images/main-slider/2.jpg" alt="" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat">
<div class="tp-caption sft sfb tp-resizeme" data-x="left" data-hoffset="15" data-y="center" data-voffset="-70" data-speed="1500" data-start="0" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<div class="sub-title alternate">Techweek'17</div>
</div>
<div class="tp-caption sft sfb tp-resizeme" data-x="left" data-hoffset="15" data-y="center" data-voffset="30" data-speed="1500" data-start="500" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<h2>August of 2017<br> will introduce you to this new world</h2>
</div>
<div class="tp-caption sft sfb tp-resizeme" data-x="left" data-hoffset="15" data-y="center" data-voffset="120" data-speed="1500" data-start="1000" data-easing="easeOutExpo" data-splitin="none" data-splitout="none" data-elementdelay="0.01" data-endelementdelay="0.3" data-endspeed="1200" data-endeasing="Power4.easeIn">
<div class="text">21 August - 3 September, 2017, DTU</div>
</div>
</li>
</ul>
</div>
</div>
</section>
<!--End Main Slider-->
<!--About Section-->
<section class="about-section">
<div class="auto-container">
<!--Sec Title-->
<div class="sec-title centered">
<h2 id="about">About </h2>
<h3>TECHWEEK</h3>
<div class="text">
<p>Techweek is an annual workshop organized by IEEE DTU which provides an insight to various upcoming technologies in Engineering. Techweek offers an intuition to students who want to contribute to pioneer technologies of today. The objective of Techweek is to satiate the curiosity of budding minds in various fields. This August, come join us to broaden your thinking avenues.</p>
</div>
</div>
</div>
</section>
<!--End About Section-->
<!--Schedule Section-->
<section class="schedule-section" style="background-image:url(images/background/3.jpg);">
<div class="auto-container">
<!--Sec Title-->
<div class="sec-title light centered">
<h2 id="schedule">Event Schedule</h2>
<h3>Event</h3>
<div class="schedule-carousel-outer">
<!--Days Outer-->
<div class="days-outer">
<ul class="days-carousel owl-theme owl-carousel">
<li class="day">
<div class="btn-inner">
<div class="icon"><span class="flaticon-clock-1"></span></div>Tues</div>
</li>
<li class="day">
<div class="btn-inner">
<div class="icon"><span class="flaticon-clock-1"></span></div>Wed</div>
</li>
<li class="day">
<div class="btn-inner">
<div class="icon"><span class="flaticon-clock-1"></span></div>Thurs</div>
</li>
<li class="day">
<div class="btn-inner">
<div class="icon"><span class="flaticon-clock-1"></span></div>Sat</div>
</li>
<li class="day">
<div class="btn-inner">
<div class="icon"><span class="flaticon-clock-1"></span></div>Sun</div>
</li>
</ul>
</div>
<!--Speakers Carousel-->
<div class="speakers-carousel owl-theme owl-carousel">
<div class="slide-item">
<div class="inner">
<div class="speakers clearfix">
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/Solid.jpg" alt="" href="#SW" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">Solidworks</div>
<div class="designation">29 august 2017</div>
</div>
</div>
</div>
</div>
</div>
<div class="slide-item">
<div class="inner">
<div class="speakers clearfix">
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/verilog.jpg" alt="" href="#verilog" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">Verilog</div>
<div class="designation">30 august 2017</div>
</div>
</div>
<!--<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/Solid.jpg" alt="" href="#SW" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">Solidworks</div>
<div class="designation">30 august 2017</div>
</div>
</div>-->
</div>
</div>
</div>
<div class="slide-item">
<div class="inner">
<div class="speakers clearfix">
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/wattack.jpg" alt="" href="#wattack" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">WATTACK</div>
<div class="designation">31 august 2017</div>
</div>
</div>
<!--<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/DS.jpg" alt="" href="#DS" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">DS and Algos</div>
<div class="designation">30 august 2017</div>
</div>
</div>-->
</div>
</div>
</div>
<div class="slide-item">
<div class="inner">
<div class="speakers clearfix">
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/Robo.jpg" alt="" href="#robo" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">Robotics</div>
<div class="designation">2 September 2017</div>
</div>
</div>
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/IOT.jpg" alt="" href="#IOT" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">IOT</div>
<div class="designation">2 September 2017</div>
</div>
</div>
</div>
</div>
</div>
<div class="slide-item">
<div class="inner">
<div class="speakers clearfix">
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/web.jpg" alt="" href="#WD" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">Web Development</div>
<div class="designation">3 September 2017</div>
</div>
</div>
<div class="speaker">
<div class="image img-circle">
<figure class="speaker-image img-circle"><img class="img-circle" src="images/resource/DS.jpg" alt="" href="#DS" role="button" data-toggle="modal"></figure>
</div>
<div class="lower">
<div class="time">5:00 pm</div>
<div class="speaker-title">DS and Algos</div>
<div class="designation">3 September 2017</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Schedule Section-->
<!--galllery-->
<section class="page-title" style="background-image:url(images/background/2.jpg);">
<div class="auto-container">
<div class="inner-box">
<h1 id="gallery">Our Gallery</h1>
</div>
</div>
</section>
<section class="text-center">
<div class="gallery cf">
<div>
<img src="images/gallery/1.jpg" />
</div>
<div>
<img src="images/gallery/2.jpg" />
</div>
<div>
<img src="images/gallery/3.jpg" />
</div>
<div>
<img src="images/gallery/4.jpg" />
</div>
<div>
<img src="images/gallery/5.jpg" />
</div>
<div>
<img src="images/gallery/6.jpg" />
</div>
<div>
<img src="images/gallery/7.jpg" />
</div>
<div>
<img src="images/gallery/8.jpg" />
</div>
</div>
</section>
<!--Sponsors Section-->
<section class="sponsors-section">
<div class="auto-container">
<div class="sec-title centered">
<h2 id="sponsors">Our Event Sponsors</h2>
<h3>sponsors</h3>
</div>
<div class="sponsors-box">
<div class="row clearfix">
<div class="column center-block">
<div class="image">
<a href="https://codingblocks.com/" target="blank"><img src="images/sponsors/cb.png" alt="" /></a>
</div>
</div>