-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
1013 lines (880 loc) · 36.9 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">
<head>
<script src="https://kit.fontawesome.com/c43c657c77.js" crossorigin="anonymous"></script>
<meta charset="UTF-8" />
<style>
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 80%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
.modal-content{
background: linear-gradient(to bottom, #ac0b10 , #c2720a);
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background: transparent;
color: white;
}
.modal-body {padding: 2px 16px;
color: white;}
.modal-footer {
padding: 2px 16px;
background-color: linear-gradient(to bottom right, #ac0b10, #000000);
color: white;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vercera</title>
<meta
name="keywords"
content="Hackathon, Vercera, Hackathon Aligarh, ZHCET, Aligarh Muslim University, Coding, AMU, AMURoboclub"
/>
<meta name="title" content="Vercera" />
<meta
name="description"
content="Vercera landing page of AMURoboclub, ZHCET, Aligarh Muslim University"
/>
<meta name="author" href="" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://vercera-website.vercel.app/" />
<meta property="og:site_name" content="Vercera | AMURoboclub" />
<meta property="og:title" content="Vercera | AMURoboclub" />
<meta
property="og:description"
content="Hackathon Landing Page of ZHCET, Aligarh Muslim University"
/>
<meta
property="og:image"
itemprop="image"
content="https:// ******** /logo.png"
/>
<title>Vercera | AMURoboclub</title>
<!-- Logo on tab -->
<link rel="icon" href="assets/fav_icon1.png" />
<!-- font awesome for icons -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<!-- animate.css -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
/>
<!--css files-->
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/mobile-style.css" />
<link rel="stylesheet" href="css/particles.css" />
<link rel="stylesheet" href="css/navbar.css" />
<!--google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Lato|Montserrat|Open+Sans|Poppins|Roboto|Source+Sans+Pro&display=swap"
rel="stylesheet"
/>
</head>
<body >
<!-- Header -->
<header id="hero-section" class="section hero-section">
<div id="particles-js" class="particles">
<nav class="navbar">
<label class="navbar-toggle" id="js-navbar-toggle" for="chkToggle">
<i class="fa fa-bars"></i>
</label>
<a href="https://www.amuroboclub.in/" class="hack-logo">
<img src="assets/Vlogo.png" alt="logo" width="250" height="40">
</a>
<input type="checkbox" id="chkToggle" />
<ul class="main-nav" id="js-menu">
<li>
<a href="#about-section" class="nav-links">About</a>
</li>
<li>
<a href="#highlight-section" class="nav-links">Highlights</a>
</li>
<li>
<a href="#schedule-section" class="nav-links">Schedule</a>
</li>
<li>
<a href="#event-section" class="nav-links">Events</a>
</li>
<li>
<a href="#prizes" class="nav-links">Prizes</a>
</li>
<li>
<a href="#sponsors-section" class="nav-links">Sponsors</a>
</li>
<li>
<a href="#faq-section" class="nav-links">FAQs</a>
</li>
</ul>
</nav>
<div class="hackrcdu">
<h1 class="animated flipInX">
<img class = "ver-logo" src = "VERCERAlogo_noBG.png" alt="event-log" width="400" height="90"/>
</h1>
<h3>Learn while you adventure!</h3>
<h6 style="text-align: justify">
Conducted by AMURoboclub<br />
Zakir Husain College of Engineering and Technology, <br />
<br/> Aligarh Muslim University
</h6>
<a href="https://forms.gle/jrJatiSxCE5T281Z7" style="color: rgba(255, 255, 255, 0);" target="_blank"> <button id="devfolio-apply-now">Apply here</button></a>
<div style="margin-top: 5px;"> <a href="https://chat.whatsapp.com/HjXEA2ddYMXCBPtG3OP3LM" style="color: rgba(255, 255, 255, 0);" target="_blank"> <button id="devfolio-apply-now">Join Vercera Whatsapp Group</button></a></div><div style="color: #fefefe; font-size: 18px;margin-top: 8px;">Last date for registration is 17th February</div><div style="color: #fefefe; font-size: 18px;margin-top: 17px; color: #ff4501;">Follow our social media to stay updated</div>
<div class="icons" style="margin-top: -12px;">
<a href="https://www.linkedin.com/company/amuroboclub/"
target="_blank"><i class="fab fa-linkedin"></i
></a>
<a href="https://github.com/open-roboclub"
target="_blank" ><i class="fab fa-github"></i
></a>
<a href="https://m.facebook.com/groups/139438082753631/"
target="_blank"><i class="fab fa-facebook"></i
></a>
<a href="https://instagram.com/amuroboclub?igshid=OGQ2MjdiOTE="
target="_blank"><i class="fab fa-instagram"></i
></a>
<a href="https://youtube.com/@amuroboclub"
target="_blank"><i class="fab fa-youtube"></i
></a>
</div>
</div>
<div class="illustration animated slideInRight">
<img
class="hero-img"
width="600px"
src="./assets/a1.png"
class=""
alt=""
/>
</div>
</div>
</header>
<section id="about-section" class="section themes-section">
<div class="theme-cards">
<h1 class="animated flip delay-2s">About Vercera</h1>
</div>
<b><p style="color:white; text-align: justify; margin-left: 30px; margin-right: 30px;" >Vercera is the flagship fest annually conducted by AMURoboclub. It comprises of different competitions and adventure games. The winners are presented with exciting prizes. To know more about the club, visit our website using the following link.</p></b>
<br><br>
<p style="color:white"><span style="color: aquamarine;"> </span><a href="https://www.amuroboclub.tech/" target="_blank"><button class="button7 button8">AMURoboclub Website <i class="fa-solid fa-arrow-up-from-bracket"></i></button></a></p>
</section>
<!-- Highlights Section -->
<section id="highlight-section" class="section about-section">
<div class="highlights">
<h1 class="animated flip delay-2s" style="color: #fefefe;">Vercera Starts In</h1>
<div class="container">
<ul class="countdown">
<li><span id="days"></span>days</li>
<li><span id="hours"></span>Hours</li>
<li><span id="minutes"></span>Minutes</li>
<li><span id="seconds"></span>Seconds</li>
</ul>
</div>
</div>
<div class="prize">
<div class="prize-card">
Prizes Worth <br /><div>
<i class="fa-sharp fa-solid fa-indian-rupee-sign"></i> 30,000</div>
</div>
<div class="prize-card">
T-Shirts + Special Cakes for Winners
</div>
<div class="prize-card">
Food coupons to all the participants
</div>
</div>
<div class="cards">
<div class="card card-clock">
<i class="far fa-clock animated bounceIn delay-2s"></i>
<h3>120hrs</h3>
</div>
<div class="card card-themes">
<i class="fas fa-laptop-code animated bounceIn delay-2s"></i>
<h3>6 Competitions</h3>
</div>
<div class="card card-food">
<i class="fas fa-hotdog animated bounceIn delay-2s"></i>
<h3>Unlimited Adventure</h3>
</div>
</div>
</section>
<section id="themes-section" class="section themes-section" style="text-align: center;">
<h1 class="animated flip delay-2s">What's in there</h1>
<div class="theme-cards">
<div class="theme-card card-clock-programming">
<i class="fa-solid fa-code animated bounceIn delay-2s"></i>
<h3>ENGINEERING</h3>
</div>
<div class="theme-card card-themes-modelling">
<i class="fa-solid fa-microchip animated bounceIn delay-2s"></i>
<h3>INNOVATION</h3>
</div>
<div class="theme-card card-teams-work">
<i class="fa-solid fa-gear animated bounceIn delay-2s"></i>
<h3>TEAM WORK</h3>
</div>
</div>
</section>
<section id="event-section" class="event-section">
<div class="section events-section">
<div class="events">
<h1 class="animated flip delay-2s" style="color: #fefefe;">Events</h1>
</div>
<div class="events-section-section">
<div class="parent event-cards">
<div class="div1 event-card" id="myBtn" style="cursor: pointer;">
<!-- <a href="pdf/vercera-pdf.pdf" target="_blank"> -->
<h3 style="color: #fefefe;">Vercera Code-A-Thon </h3><span style="color: aqua; font-size: 17px; text-decoration: underline;">(Details)</span>
</div>
<div class="div2 event-card" id="myBtn2" style="cursor: pointer;">
<!-- <a href="pdf/vercera-pdf.pdf" target="_blank"> -->
<h3 style="color: #fefefe;">Blog Writing </h3><span style="color: aqua; font-size: 17px; text-decoration: underline;">(Details)</span>
</div>
<div class="div3 event-card" id="myBtn4" style="cursor: pointer;">
<!-- <a href="pdf/vercera-pdf.pdf" target="_blank"> -->
<h3 style="color: #fefefe;">Computer Aided Design (CAD) </h3><span style="color: aqua; font-size: 17px; text-decoration: underline;">(Details)</span>
</div>
<div class="div5 event-card" id="myBtn3" style="cursor: pointer;">
<!-- <a href="pdf/vercera-pdf.pdf" target="_blank"> -->
<h3 style="color: #fefefe;">Ideathon </h3><span style="color: aqua; font-size: 17px; text-decoration: underline;">(Details)</span>
<!-- <h2><span>Ideathon</span> -->
</div>
<div class="div6 event-card" id="myBtn5" style="cursor: pointer;">
<!-- <a href="pdf/vercera-pdf.pdf" target="_blank"> -->
<h3 style="color: #fefefe;">Software Hackathon </h3><span style="color: aqua; font-size: 17px; text-decoration: underline;">(Details)</span>
</div>
<div class="div7 event-card" id="myBtn6" style="cursor: pointer;">
<!-- <a href="pdf/vercera-pdf.pdf" target="_blank"> -->
<h4 style="color: #fefefe;">Lost City Quest Adventure Game </h4><span style="color: aqua; font-size: 17px; text-decoration: underline;">(Details)</span>
<!-- <h2><span>Lost City Quest Game</span> -->
</div>
</div>
</div>
</div>
</section>
<!-- Modals -->
<!-- The Modal -->
<div id="myModal" class="modal" >
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close1 close">×</span>
<h1>Vercera Code-A-Thon</h1>
</div>
<div class="modal-body">
<h2><ul style="list-style-type:disc; margin-left: 8px;">
It is a 2-hour programming contest which will test your logical, problem solving, and programming skills. This event requires individual participation. <a href="https://www.hackerrank.com/vercera-code-thon" target="_blank" style="color: #0d1d6e;">Join the contest here</a>
</ul>
</h2>
</div>
<div class="modal-footer">
<h3></h3>
</div>
</div>
</div>
<!-- The Modal -->
<div id="blog" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close2 close">×</span>
<h1 style="font-weight: bold;"><u>BLOG WRITING</u></h1>
</div>
<div class="modal-body">
<h2><ul style="list-style-type:disc; margin-left: 8px;">
It is an ingineous and creative blog writing competition based
on any topic of your choice. Come up with your writing skills and get awarded. The submission link will be shared at the start of the competition and you can submit your blog before given deadline. This event requires individual participation.
</ul>
</h2>
</div>
<div class="modal-footer">
<h3><br/></h3>
</div>
</div>
</div>
<!-- The Modal -->
<div id="ideathon" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close3 close">×</span>
<h1 style="font-weight: bold;"><u>IDEATHON</u></h1>
</div>
<div class="modal-body">
<h2><ul style="list-style-type:disc; margin-left: 8px">A 48-hour team participation event in which participants will come up with an innovative and revolutionary idea and present it to the judges. Your team can have maximum size of 3. The idea themes will be given at the starting of the competition.
</ul>
</h2>
</div>
<div class="modal-footer">
<h3><br/></h3>
</div>
</div>
</div>
<!-- The Modal -->
<div id="cad" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close4 close">×</span>
<h1>Computer Aided Design(CAD) competition</h1>
</div>
<div class="modal-body">
<h2><ul style="list-style-type:disc; margin-left: 8px;">
It is a 48-hour CAD modelling competition where you come up with a CAD model that solves a given problem. The problem will be given at the start of the competition. This event requires individual participation.
</ul>
</h2>
</div>
<div class="modal-footer">
<h3><br/></h3>
</div>
</div>
</div>
<!-- The Modal -->
<div id="hackathon" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close5 close">×</span>
<h1>Software Hackathon</h1>
</div>
<div class="modal-body">
<h2><ul style="list-style-type:disc; margin-left: 8px;">
It is a 48-hour event where you will build a software based product to solve a given problem. The themes will be release at the starting of the competition. The maximum team size is 3 for the competition.
</ul>
</h2>
</div>
<div class="modal-footer">
<h3><br/></h3>
</div>
</div>
</div>
<!-- The Modal -->
<div id="geo" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close6 close">×</span>
<h1>Lost City Quest Game</h1>
</div>
<div class="modal-body">
<h2><ul style="list-style-type:disc; margin-left: 8px;">
An adventure game wherein you will hunt down the clues and find the lost city treasure using a given map. The event spans entire university area but begins from AMURoboclub. The maximum team size is 3 for the game.
</ul>
</h2>
</div>
<div class="modal-footer">
<h3><br/></h3>
</div>
</div>
</div>
<!-- Schedule Section -->
<section id="schedule-section" class="section schedule-section" style="color: #fefefe;text-align: center; align-items: center;">
<!-- font-size: 16px; -->
<div class="event-schedule">
<h1 class="animated flip delay-2s" >Event Timeline</h1>
<!-- style="font-size: 36px;" -->
<!-- margin-top: 2em; margin-bottom: 4em; -->
<img src="./assets/timeline.png" class="timelineimg" />
</div>
</section>
<section id="prizes" class="event-section">
<div class="section events-section">
<div class="events">
<h1 class="animated flip delay-2s" style="color: #fefefe;">Prizes</h1>
</div>
<div class="events-section-section" style="text-align: center;">
<!-- <div class="parent-prize event-cards"> -->
<!-- <div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/software.png" alt="Avatar" style="width:100%;height:100%;opacity: 0.5;">
<h1 class="prize-heading" style="color: black;">Software Hackathon</h1>
<p style="color: wheat; font-size: 17px; text-decoration: underline;">(Details)</p>
</div>
<div class="flip-card-back">
<h2>Winner</h2>
<p>₹4000 + T-shirts + Food Coupons</p><br>
<h2>Runner up</h2>
<p>₹2000 + Food Coupons</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/caddesign.jpg" alt="Avatar" style="width:100%;height:100%;opacity: 0.5;">
<h1 class="prize-heading">CAD Competition</h1>
<p style="color: wheat; font-size: 17px; text-decoration: underline;">(Details)</p>
</div>
<div class="flip-card-back">
<h2>Winner</h2>
<p>₹4000 + T-shirts + Food Coupons</p><br>
<h2>Runner up</h2>
<p>₹2000 + Food Coupons</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/ideathon2.jpg" alt="Avatar" style="width:100%;height:100%;opacity: 0.5;">
<h1 class="prize-heading" style="color: black;">Ideathon</h1>
<p style="color: wheat; font-size: 17px; text-decoration: underline;">(Details)</p>
</div>
<div class="flip-card-back">
<h2>Winner</h2>
<p>₹2000 + T-shirts + Food Coupons</p><br>
<h2>Runner up</h2>
<p>₹1000 + Food Coupons</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/treasurehunt.jpg" alt="Avatar" style="width:100%;height:100%;opacity: 0.5;">
<h1 class="prize-heading">The Lost City Quest Adventure Game</h1>
<p style="color: wheat; font-size: 17px; text-decoration: underline;">(Details)</p>
</div>
<div class="flip-card-back">
<h2>Winner</h2>
<p>₹2000 + T-shirts + Food Coupons</p><br>
<h2>Runner up</h2>
<p>₹1000 + Food Coupons</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/blog.png" alt="Avatar" style="width:100%;height:100%;opacity: 0.5;">
<h1 class="prize-heading">Blog Writing Competition</h1>
<p style="color: wheat; font-size: 17px; text-decoration: underline;">(Details)</p>
</div>
<div class="flip-card-back">
<h2>Winner</h2>
<p>₹1000 + T-shirts + Food Coupons</p><br>
<h2>Runner up</h2>
<p>Food Coupons</p>
</div>
</div>
</div>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./assets/code.jpg" alt="Avatar" style="width:100%;height:100%; opacity: 0.5;">
<h1 class="prize-heading" style="color: black;">Code-A-Thon</h1>
<p style="color: wheat; font-size: 17px; text-decoration: underline;">(Details)</p>
</div>
<div class="flip-card-back">
<h2>Winner</h2>
<p>₹1000 + T-shirts + Food Coupons</p><br>
<h2>Runner up</h2>
<p>Food Coupons</p>
</div>
</div>
</div> -->
<table class="styled-table" style="font-size: 15px;">
<thead >
<tr style="text-align: center;">
<th>Stage</th>
<th>Winner</th>
<th>Runner up</th>
</tr>
</thead>
<tbody>
<tr>
<td>Software Hackathon</td>
<td>₹3000 + T-shirts + Special Cake</td>
<td>₹2000 + Special Cake</td>
</tr>
<tr>
<td>CAD Competition</td>
<td>₹2000 + T-shirts + Special Cake</td>
<td>₹1000 + Special Cake</td>
</tr>
<tr>
<td>Ideathon</td>
<td>₹2000 + T-shirts + Special Cake</td>
<td>₹1000 + Special Cake</td>
</tr>
<tr>
<td>Lost City Quest Game</td>
<td>₹2000 + T-shirts + Special Cake</td>
<td>₹1000 + Special Cake</td>
</tr>
<tr>
<td>Blog Writing</td>
<td>₹1000 + T-shirts + Special Cake</td>
<td>Special Cake</td>
</tr>
<tr>
<td>Code-Thon</td>
<td>₹1000 + T-shirts + Special Cake</td>
<td>Special Cake</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<div class="" style="text-align: center;color: #fffffd; background-color: #ff4501;">
<h3 class="animated flip delay-2s" style="font-size: 35px;">Certificates and Food coupons for all the participants</h3>
</div>
<section id="sponsors-section" class="section themes-section-sponsors">
<h1 class="animated flip delay-2s" style="color: #fefefe;">Our Sponsors</h1>
<div class="theme-cards">
<div class="theme-card1 card-clock-sponsor">
<a href="https://www.instagram.com/vikassweets/?hl=en">
<img src="./assets/vikas.png" width="175px" class="" alt="" />
</a>
</div>
<div class="theme-card1 card-clock-sponsor">
<a href="#">
<img src="./assets/nainital_momos.png" width="120px" class="" alt="" />
</a>
</div>
<div class="theme-card1 card-clock-sponsor">
<a href="#">
<img src="./assets/anteras.png" width="120px" class="" alt="" />
</a>
</div>
<div class="theme-card1 card-clock-sponsor">
<a href="#">
<img src="./assets/whitelogo.png" width="220px" class="" alt="" />
</a>
</div>
<div class="theme-card1 card-clock-sponsor">
<a href="#">
<img src="./assets/pizzahut.png" width="220px" class="" alt="" />
</a>
</div>
<div class="theme-card1 card-clock-sponsor">
<a href="#">
<img src="./assets/finch.jpeg" width="220px" class="" alt="" />
</a>
</div>
<div class="theme-card1 card-clock-sponsor">
<a href="#">
<img src="./assets/basement.jpeg" width="220px" class="" alt="" />
</a>
</div>
</div>
</section>
<section id="faq-section" class="section faq-section">
<div class="section events-section">
<div class="events8" >
<h1 class="animated flip delay-2s" style="color: #fefefe;">FAQs</h1>
</div>
<div class="events-section-section-faq">
<div class="faqs-list" style="color:#ac0b10; font-weight: bolder;">
<div class="accordion">
<div class="accordion-item">
<a style="color: #000;">I have registered for the event. What next?</a>
<div class="content">
<p>You are now a registered member of Vercera. Join the Whatsapp group and we will keep posting the details about each event there</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">How big can my team be?</a>
<div class="content">
<p>The maximum team size allowed is 3 for Software Hackathon and Lost City Quest game, 3 for Ideathon. For remaining competitions the participation would be inidividual.</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">How would I get the instruction for the competitions?</a>
<div class="content">
<p>Once you register, the further details regarding each event will be posted on our social media and Whatsapp group as the fest goes on. You can then directly participate in them. </p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">Where will it be conducted?</a>
<div class="content">
<p>
Vercera will be conducted at Aligarh Muslim University at different venues as mentioned in the timeline.
</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">Do I need to register for each event seperately?</a>
<div class="content">
<p>No! It only costs Rupees 30 (for club members) and Rupees 150 (for non-club members) to be a registered member of the entire fest. After registration, you can participate in any event as you like.</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">Can I participate in ideathon, CAD and Hackathon parallely?</a>
<div class="content">
<p>If you can manage these events parallely, yes you can participate in all of them.</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">How can we register as teams?</a>
<div class="content">
<p>
The team formation form will be shared one day before the respective event.
</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">What do I bring with me to the event?</a>
<div class="content">
<p>
For every competition, you need to bring your college ID. Rest depends on the requirements of the particular event.
</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">Where do I submit my blog for the blog competition?</a>
<div class="content">
<p>
The blog theme and the submission link would be shared on the competition day.
</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">Where do I give the coding contest for Code-A-Thon</a>
<div class="content">
<p>
The contest link is available in the event description above
</p>
</div>
</div>
<div class="accordion-item">
<a style="color: #000;">What is the eligibility criteria?</a>
<div class="content">
<p>
You must be a student from any recognised University/College.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="footer" class="footer">
<div class="footer-contact">
<h4><u>For any query contact us:</u></h4>
<h4>
Zaid Akhtar (Coordinator): 7667355785 <br />
Maaz Bin Asad (Coordinator): 8057201048 <br />
Email: [email protected]
</h4>
</div>
<h4>
Built with <i class="fas fa-code"></i> and
<i class="fas fa-heart"></i> by
<a href="https://www.linkedin.com/in/farhan-khan-382422243/"
><span>Farhan Khan</span></a
>
&
<a href="https://www.linkedin.com/in/prajjawal-deep-yadav/"><span>Prajjawal Deep Yadav</span></a>
</h4>
</footer>
<!-- Particles.js -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- JavaScript Files -->
<script src="js/script.js"></script>
<script src="js/particles.js"></script>
<script>
// Get the modal
var modal1 = document.getElementById("myModal");
// Get the button that opens the modal
var btn1 = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close1")[0];
// When the user clicks the button, open the modal
btn1.onclick = function() {
modal1.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal1.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal1) {
modal1.style.display = "none";
}
}
</script>
<script>
// Get the modal
var modal2 = document.getElementById("blog");
// Get the button that opens the modal
var btn2 = document.getElementById("myBtn2");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close2")[0];
// When the user clicks the button, open the modal
btn2.onclick = function() {
modal2.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal2.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal2) {
modal2.style.display = "none";
}
}
</script>
<script>
// Get the modal
var modal3 = document.getElementById("ideathon");
// Get the button that opens the modal
var btn3 = document.getElementById("myBtn3");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close3")[0];
// When the user clicks the button, open the modal
btn3.onclick = function() {
modal3.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal3.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal3) {
modal3.style.display = "none";
}
}
</script>
<script>
// Get the modal
var modal4 = document.getElementById("cad");
// Get the button that opens the modal
var btn4 = document.getElementById("myBtn4");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close4")[0];
// When the user clicks the button, open the modal
btn4.onclick = function() {
modal4.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal4.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal4) {
modal4.style.display = "none";
}
}
</script>
<script>
// Get the modal
var modal5 = document.getElementById("hackathon");
// Get the button that opens the modal
var btn5 = document.getElementById("myBtn5");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close5")[0];
// When the user clicks the button, open the modal
btn5.onclick = function() {
modal5.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal5.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal5) {
modal5.style.display = "none";
}
}
</script>
<script>
// Get the modal
var modal6 = document.getElementById("geo");
// Get the button that opens the modal
var btn6 = document.getElementById("myBtn6");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close6")[0];
// When the user clicks the button, open the modal
btn6.onclick = function() {
modal6.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal6.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal6) {
modal6.style.display = "none";
}
}
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
let devfolioOptions = {
buttonSelector: "",
key: "",
};
let script = document.createElement("script");
script.src = "";
document.head.append(script);
script.onload = function () {
new Devfolio(devfolioOptions);
};