-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1554 lines (1140 loc) · 48 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 lang="en">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Perspicacious'18</title>
<meta name="viewport" content="width = 940">
<meta name="description" content="A National Level Technical Symposium organized by the Department of Computer Science and Engineering at Bannari Amman Institute of Technology, Sathyamangalam ,is a celebration of unconstrained thinking and love for the spirit of exuberant technology.
">
<meta property="og:title" content="Perspicacious">
<meta property="og:url" content="http://change-the-world.unltd.org.uk/">
<meta property="og:image" content="http://change-the-world.unltd.org.uk/img/master-01.jpg">
<meta name="google-site-verification" content="UCkPxv8ayZI1GdSIfvWYb7NfYYLXauxfASh950weH4M" />
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css\normalize.min.css">
<link href="css\main.min.css" rel="stylesheet" type="text/css">
<link href="css\media.min.css" rel="stylesheet" type="text/css">
<link href="css\w3.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/ie8.min.css" />
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="css/ie7.min.css" />
<![endif]-->
<script language="JavaScript">
//////////F12 disable code////////////////////////
document.onkeypress = function (event) {
event = (event || window.event);
if (event.keyCode == 123) {
//alert('No F-12');
return false;
}
}
document.onmousedown = function (event) {
event = (event || window.event);
if (event.keyCode == 123) {
//alert('No F-keys');
return false;
}
}
document.onkeydown = function (event) {
event = (event || window.event);
if (event.keyCode == 123) {
//alert('No F-keys');
return false;
}
}
/////////////////////end///////////////////////
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
//
function disableCtrlKeyCombination(e)
{
//list all CTRL + key combinations you want to disable
var forbiddenKeys = new Array('a', 'n', 'c', 'x', 'v', 'j' , 'w');
var key;
var isCtrl;
if(window.event)
{
key = window.event.keyCode; //IE
if(window.event.ctrlKey)
isCtrl = true;
else
isCtrl = false;
}
else
{
key = e.which; //firefox
if(e.ctrlKey)
isCtrl = true;
else
isCtrl = false;
}
//if ctrl is pressed check if other key is in forbidenKeys array
if(isCtrl)
{
for(i=0; i<forbiddenKeys.length; i++)
{
//case-insensitive comparation
if(forbiddenKeys[i].toLowerCase() == String.fromCharCode(key).toLowerCase())
{
alert('Key combination CTRL + '+String.fromCharCode(key) +' has been disabled.');
return false;
}
}
}
return true;
}
</script>
<head>
<style>
.dropbtn {
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #3e8e41;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: #f1f1f1}
.show {display:block;}
</style>
</head>
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
<body class='hidden'>
<div class='backtotopouter mobileHide'>
<div class='backtotop'></div>
<div class='backtotopshaddow'></div>
<div class='backtotoptitle'></div>
</div>
<!-- back to to rocket END -->
<div id='ie7error'></div>
<div class='ie7Hide'>
<!-- loading START -->
<div id='loading'>
<div class='loadingOuter'></div>
<div class='loadingInner'></div>
<div class='loadingJiffy'></div>
</div>
<!-- loading END -->
<div class='scroll_outer mobileHide'>
<div class='scroll_holder'>
<div class='scroll'></div>
</div>
</div>
<div class='menu mobileHide'>
<div class='wrapper1'>
<ul>
<li><a href='javascript:void(0);' class='arial ' id='menu2'>Home</a></li>
<!--<li><a href='javascript:void(0);' class='arial' title='CONTEXT' >About</a></li>-->
<li><a href='javascript:void(0);' class='arial' id='menu3'>ABOUT</a></li>
<li><a href='javascript:void(0);' class='arial' id='menu4' >Events</a></li>
<li><a href='javascript:void(0);' class='arial' id='menu6' >Register</a></li>
<div class="dropdown">
<!--<button onclick="myFunction()" class="dropbtn">Dropdown</button>-->
<li><a onclick="myFunction()" class='arial dropbtn' >Uniq</a></li>
<li><a href='http://m.heyo.com/97fe0a' class='arial' id='menu5' >Meme Creator</a></li>
<div id="myDropdown" class="dropdown-content">
<a href="https://www.uniqtechnologies.co.in/" target="_blank">Uniq Technologies</a>
<a href="http://www.inplanttraining.org/" target="_blank">IPT</a>
<a href="http://www.internshipinchennai.com/" target="_blank">Internship</a>
<a href="http://www.ieeefinalyearprojects.org/" target="_blank">IEEE project</a>
<a href="http://www.androidtraininginchennai.com/ " target="_blank">Android Training </a>
</div>
</div>
</ul>
</div>
</div>
<a href='javascript:void(0);' class='menuMarker' id='menu2top'></a>
<section id='section_1'>
<div class='relative'>
<div class='element2'>
<div class='asteroid1'></div>
<div class='asteroid2'></div>
<div class='asteroid3'></div>
<div class='asteroid4'></div>
<div class='asteroid5'></div>
</div>
<!--
<div class='element3'><br><br><br>
<a href="https://www.facebook.com/perspicacious2k16/?ref=br_rs" target="_blank"> <div class='sprite_1'></div></a>
</div> -->
<div class='stars'>
<div class='wrapper'>
<div id='section_1_height'>
<div class='center' style="z-index:9999999999999999;">
<!-- <h1 style="color:black;"><span style="color:black;">Jan 20 , 2018<br></span></h1>-->
</div>
<!--<div class='sprite_9'></div>
--><div class='ph20'></div>
<div class='atlas_outer'>
<div class='' id='atlas_overlay'></div>
<div id='atlas' class='loop_1'></div>
</div>
<h1 style="color:black;"><span style="color:black;"><img src="img/sprite/header.gif"></span></h1>
<!--<h1 style="color:black;"><span style="color:black;"><img src="img/sprite/1234.png" ></span></h1> -->
<br>
<div class='sprite_2'></div>
</div>
</div>
</div>
</div>
<!--<div class='element4'><br> <br> <br>
<a onclick="document.getElementById('id11').style.display='block'">
<div class='sprite19'></div></a>
</div>-->
</section>
<div class='gradient'>
<a href='javascript:void(0);' class='menuMarker' id='menu3top'></a>
<section id='section_2' style="background:#2f8dc1">
<div class='stars'>
<div class='section_inner'>
<div class='wrapper'>
<h2 class='arial'>ABOUT PERSPICACIOUS’18</h2>
<div class='ph70'></div>
</div>
<div class='elementbg1 mobileHideBG'>
<div class='wrapper'>
<div class=''>
<div class='large_flip_outer'>
<img class='large_flip' id='large_flip1' src='img\section2\intro_1.png' alt=''>
<div id='large_flip_1'></div>
</div>
</div>
<div class='' align="center">
<div class='ph20'></div>
<p style=" text-align:justify;">A National Level Technical Symposium organized by the Department of Computer Science and Enginenering at Bannari Amman Institute of Technology Sathyamangalam, is a celebration of unconstrained thinking and love for the spirit of exuberant technology. </p>
<div class='ph20'></div>
<p style=" text-align:justify;">This technical fest, stretches over two days during 24th and 25th of January 2018. </p>
<p style=" text-align:justify;">Apart from the fun, frolic and platform that it offers to students to exhibit their talents, this technical symposium aims at encouraging innovative thinking among young aspirants which leads to profound technical insights.</p>
<p style=" text-align:justify;">
The entire environment is planned to give a conducive atmosphere for a holistic learning.
</p>
</div>
</div>
</div>
<div class='elementbg2 mobileHideBG'>
<div class='wrapper'>
<div class='ph80'></div>
<div class='c1'> </div>
<div class='c2-c6'>
<div class='ph50'></div>
</div>
<br style='clear:left;'>
</div>
</div>
<div class='elementbg3 mobileHideBG'>
<div class='wrapper center'>
<div class='ph70'></div>
<h3 class='arial'>Join us to experience the pageant you surely would not have savored before.</h3>
<div class='ph10'></div>
</div>
</div>
<div class='rocket_outer'>
<div class='rocket forward'></div>
</div>
</div>
</div>
</section>
<a href='javascript:void(0);' class='menuMarker' id='menu4top'></a>
<section id='section_3'>
<div class='stars'>
<div class='section_inner'>
<div class='bg1 mobileHideBG'>
<div class='wrapper center'>
<h2 class='arial'>Events</h2>
<p>Common to All Departments</p>
</div>
<br>
</div>
<div class='wrapper center'>
<div class='icons' id='load_rollovers_1'>
<a onclick="document.getElementById('id01').style.display='block'" >
<div class='col'>
<div class='icon icon1'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>PAPERUS PRESENTA </h5>
<div class='p10'></div>
<!-- <p>An investment in knowledge pays you best interest</p>-->
</div></a>
<a onclick="document.getElementById('id02').style.display='block'" >
<div class='col'>
<div class='icon icon2'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>DECIDE YOUR DEFT </h5>
<div class='p10'></div>
<!-- <p>Fuel your brain to ideate the ideas that never existed</p>-->
</div></a>
<a onclick="document.getElementById('id03').style.display='block'">
<div class='col'>
<div class='icon icon3'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>WORKSHOP</h5>
<div class='p10'></div>
<!-- <p>When the world is your classroom, you go places</p>-->
</div></a>
<a onclick="document.getElementById('id04').style.display='block'">
<div class='col'>
<div class='icon icon4'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>TEXVIKO-KWIZZ</h5>
<div class='p10'></div>
<!-- <p>Time to put those thinking caps on.-->
</p>
</div></a>
<a onclick="document.getElementById('id05').style.display='block'">
<div class='col'>
<div class='icon icon5'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>HACKATHON</h5>
<div class='p10'></div>
<!-- <p>First, solve the problem. Then, write the code</p>-->
</div></a>
<br><br><br><br><br><br><br><br> <br>
<a onclick="document.getElementById('id20').style.display='block'">
<div class='col'>
<div class='icon icon61'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>Mr.GEEK</h5>
<div class='p10'></div>
<!-- <p>A code without a proper structure is as good as no code</p>-->
</div></a>
<a onclick="document.getElementById('id21').style.display='block'">
<div class='col'>
<div class='icon icon62'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>CLASH OF CODERZ</h5>
<div class='p10'></div>
<!-- <p>A code without a proper structure is as good as no code</p>-->
</div></a>
<a onclick="document.getElementById('id06').style.display='block'">
<div class='col'>
<div class='icon icon6'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>BRAINIACS</h5>
<div class='p10'></div>
<!-- <p>A code without a proper structure is as good as no code</p>-->
</div></a>
<a onclick="document.getElementById('id07').style.display='block'">
<div class='col'>
<div class='icon icon71'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>ANIMATRIX</h5>
<div class='p10'></div>
<!--<p>People who are crazy enough to think can change the world</p>-->
</div></a>
<a onclick="document.getElementById('id08').style.display='block'">
<div class='col'>
<div class='icon icon8'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>MEME CREATOR</h5>
<div class='p10'></div>
</div></a>
<br><br><br><br><br><br><br><br><br><br>
<a onclick="document.getElementById('id09').style.display='block'">
<div class='col'>
<div class='icon icon9'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>CLICK THE UNCLICK </h5>
<div class='p10'></div>
<!-- <p>Stop fretting and start clicking </p>-->
</div></a>
<a onclick="document.getElementById('id10').style.display='block'">
<div class='col'>
<div class='icon icon63'>
<div class='iconImage'></div>
</div>
<h5 class='arial'>FUN EVENTS</h5>
<div class='p10'></div>
<!--<p>There is no fear when you are having fun </p>-->
</div></a>
</div></a>
<br style='clear:left;'>
</div>
<div class='ph70'></div>
</div>
<div class='orangeBall'>
<div class='wrapper'>
<div class='center'>
</div>
</div>
</div>
</div>
</div>
</section>
<a href='javascript:void(0);' class='menuMarker' id='menu3top'></a>
<section id='section_4'>
<div class='stars'>
<div class='section_inner mobileHideBG'>
<!-- <div class='wrapper'>
<h2 class='arial'>SUPPORTING YOUNG PEOPLE</h2>
<div class='ph50'></div>
<div class='c3-c10 gridAuto center'>
<p>We've found that there are many young people who would like to set up their own business .</p>
<div class='ph20'></div>
<p>Over a quarter of young people who are interested in setting up a business want to establish a social enterprise (27%) and are significantly more likely to want to do so than the general population <a href='https://unltd.org.uk/wp-content/uploads/2014/06/Populus_RBS-Enterprise_Tracker_2nd-Quarter_2014_Report.pdf' target='_blank' class='source'>(source)</a>.</p>
</div>
<div class='flipAroundFaces'>
<div class='face face1'><img src='img\section4\face1.png' alt=''></div>
<div class='face face2'><img src='img\section4\face2.png' alt=''></div>
<div class='face face3'><img src='img\section4\face3.png' alt=''></div>
<div class='face face4'><img src='img\section4\face4.png' alt=''></div>
<div class='face face5'><img src='img\section4\face5.png' alt=''></div>
<div class='face face6'><img src='img\section4\face6.png' alt=''></div>
<div class='face face7'><img src='img\section4\face7.png' alt=''></div>
<div class='face face8'><img src='img\section4\face8.png' alt=''></div>
--<div class='center_planet' id='s4_load_faces'>
<p>Sponcer</p>
</div>--
</div>
</div>-->
<!--sponsers
<div class='wrapper'>
<div class='ph90'></div>
<div class='c3-c10 gridAuto center'>
<h1 class='font_40 arial'>Sponcer</h1>
</div>
<div class='ph50'></div>
<div class='center c1-c4'>
<div class='medium_flip_outer'>
<img class='medium_flip' id='medium_flip1' src='img\section4\big_1.png' alt=''>
<div id='medium_flip_1'></div>
</div>
<div class='ph20'></div>
<p>The creative and practical learning environment helps young people to develop new skills, and to apply the skills they have learned through formal education in a meaningful way.</p>
</div>
<div class='center c5-c8'>
<div class='medium_flip_outer'>
<img class='medium_flip' id='medium_flip2' src='img\section4\big_2.png' alt=''>
</div>
<div class='ph20'></div>
<p>An UnLtd Award lets young people lead and take ownership of their own idea, and to 'learn by doing'.</p>
</div>
<div class='center c9-c12'>
<div class='medium_flip_outer'>
<img class='medium_flip' id='medium_flip3' src='img\section4\big_3.png' alt=''>
<div id='medium_flip_3'></div>
</div>
<div class='ph20'></div>
<p>The Award has symbolic value. It shows that UnLtd believes in the young person and brings validation and credibility.</p>
</div>
<br style='clear:left;'>
<div class='ph90'></div>
<div class='c3-c10 gridAuto center'>
<!--<p>Alongside our direct Award-making, we are delivering events to build and strengthen networks, and developing campaigns to generate more support for young social entrepreneurs.
</p>
</div>
</div> -->
<div class='bg4 mobileHideBG'>
<div class='videos'>
<!--<img src='img/section4/tv1.png' alt='' class='frame1'/>
<img src='img/section4/tv2.png' alt='' class='frame2'/>
<img src='img/section4/tv3.png' alt='' class='frame3'/>
<img src='img/section4/tv4.png' alt='' class='frame4'/>-->
<div class='video video1 s4_button_1_video'>
<iframe width="569" height="320" src="//www.youtube.com/embed/NrcX028ZdCQ" frameborder="0" allowfullscreen></iframe>
</div>
<div class='video video2 s4_button_2_video'>
<iframe width="569" height="320" src="//www.youtube.com/embed/NrcX028ZdCQ" frameborder="0" allowfullscreen></iframe>
</div>
<div class='video video3 s4_button_3_video'>
<iframe width="569" height="320" src="//www.youtube.com/embed/NrcX028ZdCQ" frameborder="0" allowfullscreen></iframe>
</div>
<div class='button button1' id='s4_button_1'></div>
<div class='button button2' id='s4_button_2'></div>
<div class='button button3' id='s4_button_3'></div>
<div class='frame1 mobileHide'></div><div class='frame2 mobileHide'></div><div class='frame3 mobileHide'></div><div class='frame4 mobileHide'></div><!-- <img src='img/section4/tv1.png' alt='' class='frame1'/><img src='img/section4/tv2.png' alt='' class='frame2'/><img src='img/section4/tv3.png' alt='' class='frame3'/><img src='img/section4/tv4.png' alt='' class='frame4'/> -->
<p class='vid_description'></p><div class='video video1 s4_button_1_video'>
<iframe width="560" height="315" src="//www.youtube.com/embed/NrcX028ZdCQ" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe> </div> </div>
</div>
</div>
<div class='start_loop_2 clouds_outer clouds_outer_mobile'>
<div class='s5_h2'>
<a href='javascript:void(0);' class='menuMarker' id='menu6top'></a>
<h2 class='arial'></h2>
</div>
<div class='loop_4 clouds '>
<a href='javascript:void(0);' class='menuMarker' id='menu4top'></a>
</div>
<div class='loop_3 clouds2'></div>
<div class='cloudsBG'></div>
<div class='s4_atlas_outer'>
<div id='s4_atlas_overlay'></div>
<div id='s4_atlas' class='loop_2'></div>
</div>
</div>
</div>
</section>
</div>
<section id='section_5'>
<div class='section_inner '>
<div class='bg mobileHideBG'>
<div class='hotBalloons loop_7 mobileHideBG'> </div>
<div class='wrapper'>
<div class='right'>
<div class='balloon'>
<div class='sprite151'>
<a href="" target="_black">
<img src="img/sprite/reg.png" >
</a>
</div>
</div>
<div class='balloon'>
<div class='sprite15'></div>
</div>
</div>
</div>
<div class='wrapper'>
</div>
</div>
</div>
</section>
<section id='section_6'>
<div class='loop_5 clouds '>
<div class='buildings start_loop_5'>
<div class='ph20'></div>
<div class='wrapper unleash'>
<div class='c1-c12 gridAuto'><h2 class='arial'>UNLEASHING THE POTENTIAL OF YOUNG ENGINEERS</h2></div>
<div class='c3-c10 gridAuto'><p class='p2 arial'>ON <br> 24 - 01 - 2018 & 25 - 01 - 2018</p></div>
</div>
<div class='ph70'></div>
<a href='javascript:void(0);' class='menuMarker' id='menu5top'></a>
<div class='curb'>
<div class='neon number active' style="font-size:100px;">Contact</div>
<br>
<br>
<div class='neon text'>
<br>
<p>Mohamed Afzal : 7402637728</p>
<p>Manasa prakash : 9843328930</p>
<!--<p>Mahesh Kumar :7373573062</p>
<p>Arunthathi :9585502505</p>-->
<p><br>Email: [email protected]</p>
</div>
<div class='sprite16'></div>
</div>
</div>
</div>
<!--team
<div class='section_6_bottom'>
<div class='wrapper'>
<div class='ph70'></div>
<div class='c2-c11 gridAuto'><p class='p2 arial'>Our Team </p></div>
<div class='ph70'></div>
<div class='c1-c4'>
<div class='flip_block flip_block_row_1'>
<img src='img\section6\block1.jpg' id='flip1' alt='PROVIDING POSITIVE ACTIVITIES FOR YOUNG PEOPLE' >
<h3 class='arial'>PROVIDING POSITIVE ACTIVITIES FOR YOUNG PEOPLE:</h3>
<p>A lack of positive activities is a common challenge for young people, and for the majority of our Award Winners this is a key issue they address.</p>
</div>
</div>
<div class='c5-c8'>
<div class='flip_block flip_block_row_1'>
<img src='img\section6\block2.jpg' id='flip2' alt='CREATING A SENSE OF BELONGING'>
<h3 class='arial'>CREATING A SENSE OF BELONGING:</h3>
<p>We have found that projects help other young</p>
</div>
</div>
<div class='c9-c12'>
<div class='flip_block flip_block_row_1'>
<img src='img\section6\block3.jpg' id='flip3' alt='CHALLENGING STEREOTYPES'>
<h3 class='arial'>CHALLENGING STEREOTYPES:</h3>
<p>Many of the young people we </p>
</div>
</div>
<br style='clear:left;'>
<div id='startFlip1'></div>
<div class='ph70'></div>
<div class='c1-c2'> </div>
<div class='c3-c6'>
<div class='flip_block flip_block_row_2'>
<img src='img\section6\block4.jpg' id='flip4' alt='CREATING A SENSE OF BELONGING'>
<h3 class='arial'>SUPPORTING SKILLS AND PERSONAL DEVELOPMENT IN OTHERS: </h3>
<p>Just as Award Winners develop skills by running their projects, the young people they work with often gain skills too. They often provide training (in a specific sport, for instance), as well as give participants a form of work experience or volunteering experience.</p>
</div>
</div>
<div class='c7-c10'>
<div class='flip_block flip_block_row_2'>
<img src='img\section6\block5.jpg' id='flip5' alt='CHALLENGING STEREOTYPES'>
<h3 class='arial'>RAISING ASPIRATIONS AND INSPIRING OTHERS: </h3>
<p>Award Winners show how young people can be proactive and capable of creating positive social outcomes. Our experience and evidence is that this influences other young people to think about social issues and how they might set up their own projects.</p>
</div>
</div>
<br style='clear:left;'> -->
<div id='startFlip1-2'></div>
<div class='ph90'></div>
<div class='c2-c11 gridAuto'>
<p class='p2 arial'>Our Sponsors </p></div>
<div class='window_animation mobileHide'>
<img src='img\section6\uniq.png' class='window_frame ' alt=''>
<div class='window_back'></div>
</div>
<div class='ph90'></div>
</div>
</div>
<div id='startFlip1-2'></div>
<div class='ph90'></div>
<div class='c2-c11 gridAuto'>
<p class='p2 arial'>Our Memories </p></div>
<div class='window_animation mobileHide'>
<img src='img\section6\windows.png' class='window_frame ' alt=''>
<div class='window_back'></div>
</div>
<div class='ph90'></div>
</section>
<section id='section_7'>
<div class='section_inner'>
<div class='bricks'>
<div class='windows mobileHideBG'>
<div class='bg_top'></div>
<div class='wrapper center'>
<h2 class='arial'>PRACTICE like you have never won<br>PERFORM like you have never lost</h2>
<h2 class='arial'>Sponsored By<br><a style="color:blue"href="https://www.uniqtechnologies.co.in/" target="_blank">Uniq Technologies</h2>
</div>
</div>
</div>
</div>
<div class='office center'>
<div class='wrapper relative'>
<div class='ph50'></div>
<div class='we_believe'><span class='office_fade arial'> </span></div>
<div id='s7_start_fade'></div>
<div class='ph80'></div>
<div class='to_change arial'>
<div class='office_fade fade_1'>
<div class='ph10'></div>
WE BELIEVE
</div>
</div>
<div class='to_change arial'>
<div class='office_fade fade_2'>
<div class='ph10'></div>
IN THE POTENTIAL OF YOUNG PEOPLE
</div>
</div>
<div class='to_change arial'>
<div class='office_fade fade_3'>
<div class='ph10'></div>
TO CODE THE WORLD
</div>
</div>
<div class='ph10'></div>
<div class='earth_outer'>
<div id='earth_overlay'></div>
<div id='earth' class='loop_8'></div>
</div>
</div>
</div>
<div class='mobileHide'>
<div class='road start_loop_6'>
<!-- <div class=' loop_6 bus mobileHideBG'></div> -->
<div class='roadColours mobileHideBG'>
<div class='row1 mobileHideBG'></div>
<div class='row2 mobileHideBG'></div>
<div class='row3 mobileHideBG'></div>
</div>
</div>
</div>
</section>
<div class='bottom default'>
<div align="center" style="background-color:white";>
<span style="color:black"> Made with code by </span> <span class="logo-title"><span style="color:#2196f3"></span>
<a href="register" style="text-decoration:none"><span style="color:#04aee2">Geek</span><span style="color:#fa7400">stack</span></span></a>
</div>
</div>
</div>
<script src="resources\jquery.min.js"></script>
<script src="resources\charts\chart_data.min.js"></script>
<script src="resources\inview.min.js"></script>
<script src="resources\functions.min.js"></script>
<script src="resources\loaded.min.js"></script>
<script src="resources\charts\Chart.min.js"></script>
<script src="resources\jquery-ui-1.11.0.custom\jquery-ui.min.js"></script>
<!-- Designed, built and loved by Blue Stag Studio -->
</body>
<!--modalsss-->
<!--modal paper-->
<div id="id01" class="w3-modal " id="" style="z-index:999999999999999999999;">
<div class="w3-modal-content w3-animate-top w3-card-4">
<header class="w3-container w3-pink">
<span onclick="document.getElementById('id01').style.display='none'"
class="w3-button w3-display-topright">×</span>
<h2 style="color:black;font-size:24px" >PAPERUS PRESENTA (Paper Presentaion) <br>“An investment in knowledge pays you best interest“</h2>
</header>
<div class="w3-container " style="color:black">
<p>Let your ideas surmount the <b>“Limits of Imagination”</b>. Compete with the sharpest minds in the Computer Science bandwidth and lock horns with the best of all while standing the ground!<br>
<br>
<strong>TOPICS:</strong><br>
1. Artificial Intelligence and Expert Systems<br>
2. Big Data Analytics<br>
3. Cloud Computing<br>
4. Data Mining<br>
5. Internet of Things<br>
6. Sensor Network<br>
7. Social Network<br>
8. Quantum computing<br>
9. And other innovative ideas on
10. Emerging trends in the field of Computer Science are also welcome.<br>
<br>
<strong>DETAILS:</strong><br>
• The abstract should contain Name, Department, Email-id, Contact number and Institution name of the participants.<br>
• The participants will be expected to make a 5 minute presentation on the topic and attend 2 minute query session.<br>
• The participants should bring 2 hard copies of the paper on the day of th e event.<br>
• Plagiarism is strictly prohibited.<br>
• ID card is mandatory.<br>
• The shortlisted paper will be intimated through an e-mail.<br><br>
<strong>RULES:</strong><br>
• Each team can have a maximum of two participants.<br>
• The abstract of the paper should be in IEEE FORMAT and should be sent on or before "18.01.2018" to this e-mail id"<b>[email protected]</b>".<br>
• The selected participants will be intimated on or before "19.01.2018" through e-mail.<br><br>
<br>
<a href="register" target="_black">
<button onclick="" class="w3-button w3-black"> Register</button>
</a>
<br><br></p>
</div>