-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
961 lines (900 loc) · 46.6 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
<!DOCTYPE html>
<html>
<head>
<title>aces | coders v10.0</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!---->
<link rel='icon' href='img/aces-logo.jfif' type='image/x-icon' />
<!--preloader-->
<link rel="stylesheet" type="text/css" href="css/preloader_.css">
<!--navBar-->
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component1.css" />
<script src="js/modernizr-2.6.2.min.js"></script>
<!--header-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/header_.css">
<!--scroll-->
<link rel="stylesheet" href="css/scroll_.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/all.css">
<!--cotactus-->
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/contactus.css">
<!--footer-->
<link rel="stylesheet" type="text/css" href="css/footer_.css">
<!--countdown-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/mainTimer.css">
<link href="https://fonts.googleapis.com/css?family=Droid+Sans:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/baguetteBox.min.css">
<link rel="stylesheet" href="css/fluid-gallery.css">
<link rel="stylesheet" href="css/main.css">
<!--New button CSS-->
<link rel="stylesheet" href="./css/new_button.css">
</head>
<style type="text/css">
body {
background: radial-gradient(rgb(4, 0, 51), #3a0046) !important;
}
</style>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Preloader -->
<div class="no-scroll-y">
<section>
<div id="preloader">
<div id="ctn-preloader" class="ctn-preloader">
<div class="animation-preloader">
<div class="row">
<div class="col-sm-3"></div>
<!-- <div class="col-sm-4">
<img src="img/coders-logo-2.png" alt="logo" width="164px" height="100px">
</div> -->
</div>
<div class="txt-loading">
<span data-text-preloader="C" class="letters-loading letterC">
C
</span>
<span data-text-preloader="O" class="letters-loading letterO">
O
</span>
<span data-text-preloader="D" class="letters-loading letterD">
D
</span>
<span data-text-preloader="E" class="letters-loading letterE">
E
</span>
<span data-text-preloader="R" class="letters-loading letterR">
R
</span>
<span data-text-preloader="S" class="letters-loading letterS">
S
</span>
<br>
<span data-text-preloader="v" class="letters-loading letterV">
v
</span>
<span data-text-preloader="10" class="letters-loading letter8">
10
</span>
<span data-text-preloader="." class="letters-loading letterDOT">
.
</span>
<span data-text-preloader="0" class="letters-loading letter0">
0
</span>
</div>
</div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
</div>
</section>
</div>
<!-- Start Nav Structure -->
<div class="component">
<button class="cn-button" id="cn-button">+</button>
<div class="cn-wrapper" id="cn-wrapper">
<ul>
<li id="menuBarButton"><a class="page-scroll" href="#page-top"><span class="icon-home"></span></a></li>
<li id="menuBarButton1"><a class="page-scroll" href="#about"><i class="far fa-file-code"></i></a></li>
<li id="menuBarButton2"><a class="page-scroll" href="#lastYear"><span class="icon-picture"></span></a></li>
<li id="menuBarButton3"><a class="page-scroll" href="#awards"><i class="fas fa-medal"></i></a></li>
<li id="menuBarButton4"><a class="page-scroll" href="#contact"><span class="icon-envelope-alt"></span></a></li>
</ul>
</div>
<div id="cn-overlay" class="cn-overlay"></div>
</div>
<!-- End Nav Structure -->
<!-- Header -->
<!--
<nav class="navbar navbar-default navbar-fixed-top" style="background-color: #37526f; border-color: #37526f;">
<div class="container-fluid">
<div class="brand-centered" style="background-color: #37526f; border-color: #37526f;">
<a class="navbar-brand" href=""><img style="margin-right: 10px; padding: 0;" src="img/header_logo.png" alt="codeslogo"></a>
</div>
</div>
</nav>-->
<!--End Header -->
<!-- Home Section -->
<section id="intro" class="intro-section">
<header class="headerHome">
<div class="overlay-img"></div>
<!-- <img src="img/overlay-image.png" alt="overlay-image" class="overlay-img">-->
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="video/home.mp4" type="video/mp4">
</video>
<div class="container containerMarginResp marginSet">
<section class='event row container logo-padding' id='event'>
<div class='event-content'>
<img src='img/Coders-Logo-Transparent.png' alt='SweetLandia' id='sweetlandia'/>
</div>
</section>
<div class="row container">
<div class="col">
<div class="bg-g1 size1 flex-w flex-col-c-sb p-l-15 p-r-15 p-t-55 p-b-35 respon1">
<span></span>
<div class="flex-col-c p-t-50 p-b-50">
<div class="homePHeadTimer">
<p style="font-family: Courier New; font-weight:bold">ACES Coders v10.0 will start in</p>
</div>
<div class="flex-w flex-c cd100 p-b-82">
<!----------------------- STARTED BUTTON --------------------------->
<!-- <div class="flex-col-c-m size2 how-countdown" style="width: 100%;">
<span class="l1-txt3">STARTED</span>
</div> -->
<div class="flex-col-c-m size2 how-countdown">
<span class="l1-txt3 p-b-9 days" style="color: #a3009d;">35</span>
<span class="s1-txt1" style="font-weight: bolder;">Days</span>
</div>
<div class="flex-col-c-m size2 how-countdown">
<span class="l1-txt3 p-b-9 hours" style="color: #a3009d;">17</span>
<span class="s1-txt1" style="font-weight: bolder;">Hours</span>
</div>
<div class="flex-col-c-m size2 how-countdown">
<span class="l1-txt3 p-b-9 minutes" style="color: #a3009d;">50</span>
<span class="s1-txt1" style="font-weight: bolder;">Minutes</span>
</div>
<div class="flex-col-c-m size2 how-countdown">
<span class="l1-txt3 p-b-9 seconds" style="color: #a3009d;">39</span>
<span class="s1-txt1" style="font-weight: bolder;">Seconds</span>
</div>
</div>
<div class="homePHeadTimer">
<p style="font-family: Courier New; font-weight:bold"><!--Hurry up!!-->See you there!!</p>
</div>
</div>
</div>
</div>
<!-- <div class="col-sm-6">
<div class="row" style="float: left;">
<p class="homePHeadShow">~$show_event_name </p>
<p class="homePHead">ACES Coders v8.0</p>
</div>
<div class="row" style="float: left;">
<p class="homePHeadShow">~$stage_next </p>
<p class="homePHead">Practice Session</p> -->
<!--<p class="homeresult">// Feb 25</p>-->
<!-- </div>
<div class="row" style="float: left;">
<p class="homePHeadShow">~$show_event </p>
<p class="homePHead">Over Night Coding </p>
</div>
<div class="row" style="float: left;">
<p class="homePHeadShow">~$end </p>
<p class="homePHead">Awards Ceremony </p>
</div> -->
</div>
</div>
</div>
<div class="container">
<div class="row marginStyle">
<div class="col-sm-4 containerMargin">
<p style="color: white;"><i class="fas fa-calendar fa-4x"></i></i>
</p>
<p class="aboutP"><strong>~$show_event_date</strong></p>
<p class="homePHead" style="font-weight:bold">14th October 2023</p>
</div>
<div class="col-sm-4 containerMargin">
<p style="color: white;"><i class="fa fa-map-marker fa-4x"></i></p>
<p class="aboutP"><strong>~$show_event_venue</strong></p>
<p class="homePHead" style="font-weight:bold">Faculty of Engineering UoP </p>
</div>
<div class="col-sm-4 containerMargin">
<p style="color: white;"><i class="fa fa-clock-o fa-4x"></i></p>
<p class="aboutP"><strong>~$show_event_time</strong></p>
<p class="homePHead" style="font-weight:bold">6.00 p.m - 6.00 a.m.</p>
</div>
</div>
<!----------------------------------------- REGISTER HERE BUTTON ------------------------------------------->
<!-- <div class="containerMargin">
<p style="color: white;"><i class="fas fa-calendar fa-4x"></i></i>
</p>
<p class="aboutP"><strong>~$show_event_details</strong></p>
<p class="homePHead" style="font-weight:bold">14th October 2023</p>
<br>
<p class="homePHead" style="font-weight:bold">at</p>
<br>
<p class="homePHead" style="font-weight:bold">Faculty of Engineering UoP</p>
</div>
<div class="wrapper-a">
<a class="button-wrapper-a" href="https://forms.gle/UM4gopgnabp7B4b18" target="_blank" style="color: white;">
Register Here
</a>
</div> -->
</div>
</header>
</section>
<!-- About Section -->
<section id="about" class="about-section">
<header class="headerAbout">
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="video/coders2022.mp4" type="video/mp4">
</video>
<div class="container containerMargin">
<div class="row">
<div class="container">
<div class="row">
<div class="col-sm-12" style="margin-bottom: 40px;">
<p class="mainHeadp"><strong>~$what_is </strong></p>
<h1 class="mainHeadH pixelFont"><strong>ACES_Coders?</strong></h1>
</div>
</div>
</div>
<div class="container" style="border-left: 5px solid #fb7038;">
<div class="row containerAbout">
<div class="col-sm-12">
<p class="textAbout" style="font-family: 'Righteous', cursive;">ACES Coders, organized by ACES, the Department of Computer Engineering, University of Peradeniya is the largest algorithmic programming competition in the country. It is a 12-hour coding competition open to all undergraduates
island-wide.
</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 containerMargin">
<p style="color: white;"><i class="fas fa-users fa-5x"></i></i>
</p>
<p class="aboutP"><strong>~$Teams</strong></p>
<p class="textAbout">More than 100 teams competing in the biggest coding competition of the country.</p>
</div>
<div class="col-sm-6 containerMargin">
<p style="color: white;"><i class="fas fa-laptop-code fa-5x"></i></p>
<p class="aboutP"><strong>~$Coding</strong></p>
<p class="textAbout">For those who are passionate about programming and problem solving.</p>
</div>
</div>
<div class="row containerMargin">
<div class="col-sm-12">
<p style="color: white;"><i class="fas fa-hourglass-half fa-5x"></i></p>
<p class="aboutP"><strong>~$Overnight</strong></p>
<p class="textAbout">Continuous 12 hours of extreme programming.</p>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="container" style="margin-top: 30px;">
<div class="row">
<div class="col-lg-12">
<p class="mainHeadp"><strong>~$show </strong></p>
<h1 class="mainHeadH pixelFont"><strong>Rules</strong></h1>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="containerMarginListRule">
<p class="ruleP"><strong>~$rule_one</strong></p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">Open to </p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">all undergraduates</p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;"> of any </p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">recognized higher educational institute or university of Sri Lanka.</p>
</div>
</div>
<div class="col-sm-6">
<div class="containerMarginListRule">
<p class="ruleP"><strong>~$rule_two</strong></p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">Each team must consist of </p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">3 members(or less)</p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">at most.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="containerMarginListRule">
<p class="ruleP"><strong>~$rule_three</strong></p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">All participants should be </p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">present at the venue</p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">during the competition. No participant, under any circumstances is allowed to take part in the competition </p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">online from a remote location.</p>
</div>
</div>
<div class="col-sm-6">
<div class="containerMarginListRule">
<p class="ruleP"><strong>~$rule_four</strong></p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">Every code submitted at the competition will be checked for </p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">plagiarism.</p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;"> Copying from the Internet or submitting others' code will</p>
<p class="textPRule" style="font-family: 'Righteous', cursive;">disqualify</p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">a team.</p>
</div>
</div>
</div>
</div>
<!-- <div class="container-contact1-form-btn" style="margin-top: 20px;">
<button class="contact1-form-btn" href="pdf/Rules and Regulations.pdf">
<a href="pdf/Rules and Regulations.pdf" style="color: white" download>
<span>Download<i class="fa fa-long-arrow-right" aria-hidden="true"></i></span>
</a>
</button>
</div> -->
<!------------------------------------- DOWNLOAD BUTTON -------------------------------->
<!-- <div class="container-contact1-form-btn" style="margin-top: 20px;">
<div class="download-btn" style="margin-top: 20px;">
<a href="pdf/Rules and Regulations.pdf" class="download-btn-a">
<span>DOWNLOAD</span>
<div class="wave"></div>
</a>
</div>
</div> -->
<div class="register">
<div class="row" style="margin-top: 40px;">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadp"><strong>~$how_can_you </strong></p>
<h1 class="mainHeadH pixelFont"><strong>Register?</strong></h1>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class=" " style="margin-bottom: 30px;">
<p class="ruleP"><strong>~$Faculty of Engineering, UoP Undergraduates</strong></p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">All undergraduates of the Faculty of Engineering, UoP should participate in the Precoders to get qualified into ACES Coders. Registration for the Precoders will be notified through the department.</p>
</div>
</div>
<div class="col-sm-6">
<div class=" ">
<p class="ruleP"><strong>~$Other Undergraduates</strong></p>
<p class="textAboutRule" style="font-family: 'Righteous', cursive;">Register now using the "REGISTER HERE !" button at the top of this page. Registrations will be done on a first-come-first-serve basis due to limited spots.</p>
</div>
</div>
</div>
</div>
</section>
<!--End About Section -->
<!-- lastYear Section -->
<section id="lastYear" class="lastYear-section">
<header class="headerLastYear">
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="video/awards.mp4" type="video/mp4">
</video>
<div class="container containerMargin">
<div class="row">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadp"><strong>~$ </strong></p>
<h1 class="mainHeadH pixelFont"><strong>ACES_CODERS v9.0</strong></h1>
</div>
</div>
<div class="row">
<div class="col-sm-12 containerLastYear" style="border-left: 5px solid #fb7038;">
<p class="textAbout">ACES Coders v9.0, Sri Lanka's biggest programming competition took place on the 17th of December 2022 with the participance of 300 coders and recognized some of Sri Lanka's top up-and-coming programmers from almost all universities
and institutions.</p>
</div>
</div>
<div class="row">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadWinp"><strong>~$show </strong></p>
<h1 class="mainHeadH pixelFont"><strong>Winners</strong></h1>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="set">
<div class="winnerPDiv">
<p class="winnerHeadP"><strong>~$winner</strong></p>
</div>
<div class="winners">
<div class="firstPlaceDiv"></div>
<div class="winnerPDiv">
<p class="winnerP"><strong>~$Team</strong></p>
<p class="winnerTeamP"><strong> BitFlippers</strong></p>
</div>
<div>
<p class="textAbout">Department of Computer Engineering, University of Peradeniya</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="set">
<div class="winnerPDiv">
<p class="winnerHeadP"><strong>~$1<up>st</up> runner-up</strong></p>
</div>
<div class="winners">
<div class="secondPlaceDiv"></div>
<div class="winnerPDiv">
<p class="winnerP"><strong>~$Team</strong></p>
<p class="winnerTeamP"><strong> BitLasagna</strong></p>
</div>
<div>
<p class="textAbout">Department of Computer Engineering, University of Peradeniya</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="set">
<div class="winnerPDiv">
<p class="winnerHeadP"><strong>~$2<up>nd</up> runner-up</strong></p>
</div>
<div class="winners">
<div class="thirdPlaceDiv"></div>
<div class="winnerPDiv">
<p class="winnerP"><strong>~$Team</strong></p>
<p class="winnerTeamP"><strong> DragonCoders</strong></p>
</div>
<div>
<p class="textAbout">University of Colombo School of Computing</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadWinp"><strong>~$show </strong></p>
<h1 class="mainHeadH pixelFont"><strong>Past_Memories</strong></h1>
</div>
</div>
<div class="container gallery-container">
<div class="tz-gallery">
<div class="row">
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g1.jpg"><img src="img/g1.jpg" alt="galleryImg"></a>
</div>
</div>
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g2.jpg"><img src="img/g2.jpg" alt="galleryImg"></a>
</div>
</div>
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g3.jpg"><img src="img/g3.jpg" alt="galleryImg"></a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g4.jpg"><img src="img/g4.jpg" alt="galleryImg"></a>
</div>
</div>
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g5.jpg"><img src="img/g5.jpg" alt="galleryImg"></a>
</div>
</div>
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g6.jpg"><img src="img/g6.jpg" alt="galleryImg"></a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g7.jpg"><img src="img/g7.jpg" alt="galleryImg"></a>
</div>
</div>
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g8.jpg"><img src="img/g8.jpg" alt="galleryImg"></a>
</div>
</div>
<div class="col-sm-4">
<div>
<a class="lightbox" href="img/g9.jpg"><img src="img/g9.jpg" alt="galleryImg"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="awards" class="awards-section">
<header class="headerAwards">
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="video/awards.mp4" type="video/mp4">
</video>
<div class="container containerMargin">
<div class="row">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadp"><strong>~$show </strong></p>
<h1 class="mainHeadH pixelFont"><strong>Awards</strong></h1>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="awardsCard">
<div class="winners">
<div class="firstPlaceAward">
<img src="img/firstplace.png" style="width: 180px;height: 170px;">
</div>
<div class="">
<p class="winnerHeadP"><strong>~$winner</strong></p>
<p class="winnerP"><strong>LKR</strong></p>
<p class="winnerTeamP"><strong> 100,000</strong></p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="awardsCard">
<div class="winners">
<div class="firstPlaceAward">
<img src="img/secondplace.png" style="width: 180px;height: 170px;">
</div>
<div class="">
<p class="winnerHeadP"><strong>~$1<up>st</up> runner-up</strong></p>
<p class="winnerP"><strong>LKR</strong></p>
<p class="winnerTeamP"><strong> 75,000</strong></p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="awardsCard">
<div class="winners">
<div class="firstPlaceAward">
<img src="img/thirdplace.png" style="width: 180px;height: 170px;">
</div>
<div class="">
<p class="winnerHeadP"><strong>~$2<up>nd</up> runner-up</strong></p>
<p class="winnerP"><strong>LKR</strong></p>
<p class="winnerTeamP"><strong> 40,000</strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<!----------------------Sponsors--------------------------------->
<!-- <div class="row" style="margin-top: 30px;">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadp"><strong>~$show </strong></p>
<h1 class="mainHeadH pixelFont"><strong>Our_Sponsors</strong></h1>
</div>
</div>-->
<!--
<div class="row">
<div class="col-sm-12" style="padding: 35px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/logo1.png" alt="" class="img-responsive center-block">
</div>
</div> -->
<!-------------------------------Sponsors------------------------------->
<!--
<div class="row">
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img1.png" alt="" class="img-responsive center-block">
</div>
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img2.png" alt="" class="img-responsive center-block">
</div>
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img3.png" alt="" class="img-responsive center-block">
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img4.png" alt="" class="img-responsive center-block">
</div>
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img5.png" alt="" class="img-responsive center-block">
</div>
<div class="col-sm-2"></div>
</div>
<div class="row">
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img6.png" alt="" class="img-responsive center-block">
</div>
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img7.png" alt="" class="img-responsive center-block">
</div>
<div class="col-sm-4" style="padding: 25px; border-radius: 4px;">
<img style="background-color: aliceblue; border-radius: 4px;" src="img/sponsors/img8.png" alt="" class="img-responsive center-block">
</div>
</div>
</div>
-->
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container containerMargin">
<div class="row" style="margin-top: 30px;">
<div class="col-lg-12">
<p class="mainHeadp"><strong>~$ </strong></p>
<h1 class="mainHeadH pixelFont"><strong>FAQ</strong></h1>
</div>
</div>
</div>
<div class="container containerMargin">
<div class="row">
<div class="col-sm-12" style="margin-bottom: 40px;">
<button class="Show buttonfaq">+</button>
<button class="Hide buttonfaq">-</button>
</div>
</div>
</div>
<div id="target" class="container borderBox">
<!--
<div class="boardeBot paddingBot">
<div class="row">
<div class="col-sm-12">
<div class="qFaqP">
<p>~Who can participate?</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="aFaqP">
<p>Any undergraduate currently studying in the private or government sector higher educational institute or university of Sri Lanka.</p>
</div>
</div>
</div>
</div>-->
<div class="boardeBot paddingBot">
<div class="row">
<div class="col-sm-12">
<div class="qFaqP">
<p>~What should I bring to the competition?</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="aFaqP">
<p>Participants are expected to bring their own laptops and chargers. WiFi access points will be provided. As it is going to be an overnight event, bring anything that is necessary.</p>
</div>
</div>
</div>
</div>
<div class="boardeBot paddingBot">
<div class="row">
<div class="col-sm-12">
<div class="qFaqP">
<p>~Can I attend ACES Coders virtually?</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="aFaqP">
<p>No, unfortunately, all selected participants will be required to be present on-site to finish the competition.</p>
</div>
</div>
</div>
</div>
<!--<div class="boardeBot paddingBot">
<div class="row">
<div class="col-sm-12">
<div class="qFaqP">
<p>~What should we do if the head of the department did not receive the registration forms?</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="aFaqP">
<p>Email to [email protected] mentioning your university/institute and the department. They will get back to you.</p>
</div>
</div>
</div>
</div>-->
<div class="boardeBot paddingBot">
<div class="row">
<div class="col-sm-12">
<div class="qFaqP">
<p>~Will food and beverages will be provided?</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="aFaqP">
<p>Yes, they will be provided.</p>
</div>
</div>
</div>
</div>
<div class="paddingBot">
<div class="row">
<div class="col-sm-12">
<div class="qFaqP">
<p>~If I have more questions, how can I clarify?</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="aFaqP">
<p>You can email your inquiries to [email protected]</p>
</div>
</div>
</div>
</div>
</div>
<!--
<header class="headerContact" style="margin-top: 30px;">
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="video/contact.mp4" type="video/mp4">
</video>
<div class="container containerMargin">
<div class="row" style="margin-top: 30px;">
<div class="col-lg-12" style="margin-bottom: 40px;">
<p class="mainHeadp"><strong>~$ </strong></p><h1 class="mainHeadH pixelFont"><strong>Contact_Us</strong></h1>
</div>
</div>
<div class="contact1">
<div class="container-contact1">
<div class="contact1-pic js-tilt" data-tilt>
<img src="img/img-01.png" alt="IMG">
</div>
<form class="contact1-form validate-form">
<div class="wrap-input1 validate-input" data-validate = "Name is required">
<input class="input1" type="text" name="name" placeholder="Name">
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input" data-validate = "Valid email is required: [email protected]">
<input class="input1" type="text" name="email" placeholder="Email">
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input" data-validate = "Subject is required">
<input class="input1" type="text" name="subject" placeholder="Subject">
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input" data-validate = "Message is required">
<textarea class="input1" name="message" placeholder="Message"></textarea>
<span class="shadow-input1"></span>
</div>
<div class="container-contact1-form-btn">
<button class="contact1-form-btn">
<span>
Send Email
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</span>
</button>
</div>
</form>
</div>
</div>
</div>
</header>
-->
<center>
<footer class="mainfooter" role="contentinfo">
<div class="footer-middle">
<div class="container">
<div class="row copy">
<div class="col-sm-12">
<!--Column1-->
<div class="footer-pad">
<h4>CONTACT ACES</h4>
<ul class="list-unstyled">
<li><a href="#">[email protected]</a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<!--Grid row-->
<div id="container-fluid-id-map">
<!--Grid column-->
<!--Card-->
<div class="card card-cascade narrower">
<!--Card content-->
<div class="card-body card-body-cascade text-center mapHeight">
<!--Google map-->
<div id="map-container-google-9" class="z-depth-1-half map-container-5">
<iframe src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJO0odMytv4zoR7O2Ce6yx7Pw&key=AIzaSyAIacve-hWRVdkWMQCVeX9-vLVSy7lyKwU" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<!--/.Card content-->
</div>
</div>
<!--Grid row-->
</div>
<div class="row" style="margin-top: 20px; margin-bottom: 20px;">
<div class="col-sm-12">
<h4 style="padding: 10px;">Follow Us</h4>
<ul class="social-network social-circle">
<li><a href="https://www.facebook.com/aces.coders" class="icoFacebook" title="Facebook" target="_blank"><i class="fa fa-facebook"></i></a></li>
<!-- <li><a href="https://www.linkedin.com/company/aces-uop/about/" class="icoLinkedin" title="Linkedin" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" class="icoLinkedin" title="Linkedin"><i class="fa fa-youtube-play"></i></a></li>-->
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12 copy">
<p class="text-center" style="color: white;">© Copyright 2023 - Association of Computer Engineering Students 2023 - All rights reserved.</p>
</div>
</div>
<br>
<br>
</div>
</div>
</footer>
</center>
</section>
</body>
</html>
<!--preloader js-->
<script src="js/jquery.min.js"></script>
<script src="js/preloader_.js"></script>
<!--navbar js-->
<script src="js/polyfills.js"></script>
<script src="js/demo1.js"></script>
<!--scroll-->
<!--<script src="js/scroll_.js"></script>-->
<!--index.html main-->
<script src="js/main.js"></script>
<!--gallery main-->
<script src="js/gallery.js"></script>
<!--gallery main-->
<script src="js/hideshow.js"></script>
<!--faqTab-->
<style type="text/css">
#target {
display: none;
}
.Hide {
display: none;
}
</style>
<script src="js/countdowntime.js"></script>
<script src="js/tilt.jquery.min.js"></script>
<script src="js/main.js"></script>
<script>
$('.cd100').countdown100({
endtimeYear: 2023,
endtimeMonth: 10,
endtimeDate: 14,
endtimeHours: 18,
endtimeMinutes: 0,
endtimeSeconds: 0,
timeZone: ""
});
</script>
<script>
$('.js-tilt').tilt({
scale: 1.1
})
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154565227-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-154565227-2');
</script>