-
Notifications
You must be signed in to change notification settings - Fork 2
/
events.html
1064 lines (972 loc) · 44.9 KB
/
events.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>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Engineer 2022 | Events</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" />
<link rel="shortcut icon" href="./images/NEWLOGO.png" type="image/x-icon" />
<link rel="stylesheet" href="./dist/css/style.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<link rel="stylesheet" href="./css/responsive.css" />
<link rel="stylesheet" href="./dist/css/workshop.css" />
</head>
<body>
<header>
<div class="container">
<nav class="main-nav">
<a href="/" class="logo hero-glitch" data-text="ENGINEER">ENGINEER</a>
<button id="nav-button" class="navbar-toggler" type="button" data-bs-toggle="collapse" aria-expanded="false"
aria-label="Toggle navigation">
<svg class="nav-ham" viewBox="0 0 100 100" width="50" onclick="this.classList.toggle('active')">
<path class="nav-ham-line top"
d="m 30,33 h 40 c 0,0 9.044436,-0.654587 9.044436,-8.508902 0,-7.854315 -8.024349,-11.958003 -14.89975,-10.85914 -6.875401,1.098863 -13.637059,4.171617 -13.637059,16.368042 v 40" />
<path class="nav-ham-line middle" d="m 30,50 h 40" />
<path class="nav-ham-line bottom"
d="m 30,67 h 40 c 12.796276,0 15.357889,-11.717785 15.357889,-26.851538 0,-15.133752 -4.786586,-27.274118 -16.667516,-27.274118 -11.88093,0 -18.499247,6.994427 -18.435284,17.125656 l 0.252538,40" />
</svg>
</button>
<ul class="nav-list" id="nav-menu">
<li>
<a href="/" class="nav-link">Home</a>
</li>
<li>
<a href="https://engineer.nitk.ac.in/about" class="nav-link">About</a>
</li>
<li>
<a href="https://engineer.nitk.ac.in/brochure" class="nav-link">Brochure</a>
</li>
<li>
<a href="https://engineer.nitk.ac.in/events" class="nav-link">Events</a>
</li>
<li>
<a href="https://engineer.nitk.ac.in/workshops" class="nav-link">Workshops</a>
</li>
<li>
<a href="https://engineer.nitk.ac.in/gallery" class="nav-link">Gallery</a>
</li>
<li>
<a href="#contact_us" class="nav-link">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Gaming modal -->
<!-- Game 1 -->
<div class="modal fade" id="game1" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Call of Duty</h3>
<span class="badge bg-info">Online Event</span>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/g11.jpg" alt="" style="width: 100%" />
<div class="container my-3">
<div class="alert alert-warning alert-dismissible fade show disscount-alert" role="alert">
*Note: This tournament is open for all.
</div>
</div>
<h5 class="mt-3">GAME ACCOUNTS</h5>
Players have enter their own Game ID and correct
player level (Incorrect details wont’ be allowed it the tournament)
<br />
<br />
<h5 class="mt-3">TEAMS AND ROSTERS</h5>
One player can register only once and play from
one team only
<br />
<h5 class="mt-3"><i class="fa-solid fa-trophy"></i> Prize Pool</h5>
<strong>* Upto 12000 INR</strong> <br />
<h5 class="mt-3">Registration Fees</h5>
150 INR per team
<br />
<h5 class="mt-3">Point Scheme</h5>
<table class="table table-dark center">
<thead>
<tr>
<th scope="col">Placement</th>
<th scope="col">Points</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>20</td>
</tr>
<tr>
<th scope="row">2</th>
<td>14</td>
</tr>
<tr>
<th scope="row">3</th>
<td>10</td>
</tr>
<tr>
<th scope="row">4</th>
<td>8</td>
</tr>
<tr>
<th scope="row">5</th>
<td>7</td>
</tr>
<tr>
<th scope="row">6</th>
<td>6</td>
</tr>
<tr>
<th scope="row">7</th>
<td>5</td>
</tr>
<tr>
<th scope="row">8</th>
<td>4</td>
</tr>
<tr>
<th scope="row">9</th>
<td>3</td>
</tr>
<tr>
<th scope="row">10</th>
<td>2</td>
</tr>
<tr>
<th scope="row">11-16</th>
<td>1</td>
</tr>
</tbody>
</table>
<br />
1. Each kill +1 point.<br />
2. Max 30 points (kill score + survival rank score) during the
qualifiers<br />
3. Point limit removed in semis and finals<br />
4. MVP(Top Fragger) will be selected from the finals only.<br />
<h5 class="mt-3">Game Format</h5>
Battle Royal <br />
<h5 class="mt-3">Cheating/Exploiting</h5>
1. Any use of hacks/emulators from any of the team members
from any team will lead to ban of the whole team.<br />
2. The usage of ‘jailbroken’ or ‘rooted’ devices in tournament
matches is not permitted.<br />
3. We reserve the right to edit the rules at any time and disqualify
teams for reasons not stated in this list or take other action.<br />
4. During an on-going tournament, players are not allowed to
change their in-game name. Clan Tags before in-game names
are allowed to be changed<br />
5. Anyone/anyteam found exploiting bugs and using it to their
advantage will lead to the ban of their team from the
tournament.
<br /><br />
<strong>Date:</strong> 23rd,24th and 25th Sept 2022 <br /><br />
<strong>For any querry contact:</strong><br />
Madhur : +91 77260 08683 <br />
<br />
<h5>FAQ</h5>
<a class="link_hover"
href="https://docs.google.com/document/d/e/2PACX-1vS4I43dj0DohRwtU-cdDzl6gxUcYrnJdhmJcAMxBHXdJ5UxK91unCWCSbZJIpCw4-ebXvVYuTnaIE3c/pub"
target="_blank" rel="noopener noreferrer">Check FAQ here</a>
</div>
<div class="modal-footer">
<!-- <a href="https://forms.gle/tG36y3uZR5LpDg166" target="_blank">
<button type="button" class="btn btn-dark">
Register here
</button>
</a> -->
<a href="https://discord.gg/QvxSJxTn8Q" target="_blank">
<button type="button" class="btn btn-dark">
<i class="fa-brands fa-discord"></i>
Join Community
</button>
</a>
<a href="https://forms.gle/RG2nHJEdRF6Rk1cL6" target="_blank">
<button type="button" class="btn btn-dark"> Register Now </button>
</a>
</div>
</div>
</div>
</div>
<!-- Game 2 -->
<div class="modal fade" id="game2" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Valorant Tournament</h3>
<span class="badge bg-info">Online Event</span>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/g21.png" alt="" style="width: 100%" />
<div class="container my-3">
<div class="alert alert-warning alert-dismissible fade show disscount-alert" role="alert">
*Note: This tournament is open for all.
</div>
</div>
<h5 class="mt-3">GAME ACCOUNTS</h5>
-Your account must be signed in on tracker.gg for proof of rank.
If one is found to have mentioned their rank incorrectly (smurfing),
organisers have full rights to disqualify the team.
<br />
-You are not allowed to share or use another person’s game account. Your account is for
your use, and your use alone.
<br />
<h5 class="mt-3">TEAMS AND ROSTERS</h5>
-A “team” will consist of five players designated as starters and
a maximum of 2 substitutes (entry fees don’t apply to substitutes). <br />
-Each team will have a team captain.<br />
-The team captain handles the administrative duties of the team. <br />
-The communication between the organisers and the teams will only happen via the team captain(Discord or
Whatsapp) <br />
<br />
<h5 class="mt-3"><i class="fa-solid fa-trophy"></i> Prize Pool</h5>
<strong>Upto 25000 INR</strong> <br />
<br />
<h5 class="mt-3">Registration Fees</h5>
500 INR per team
<br />
<h5 class="mt-3">Pre-match</h5>
Team members should be online 5 minutes before their scheduled time.
If a team member fails to show up, we will wait for the person for 10 minutes.
If the teammate fails to show up after that, the game will proceed as it is.
Players are responsible for any of their own technical issues
<h5 class="mt-3">Game Format</h5>
Party Status: Closed <br />
Map: Chosen Map as determined using pick/ban phase<br />
Mode: Standard<br />
Cheats: Off<br />
Tournament Mode: On<br />
Overtime win by Two: On<br />
<h5 class="mt-3">In Game</h5>
1 tactical timeout for each team. Any technical difficulties faced by the participants
will be dealt with by the organisers as they see fit.
The decision of what circumstances merit a game restart is solely
at the discretion of the Tournament Administration. Restart protocol
will be decided by Tournament Administration and communicated to the team before being executed.
<br /><br />
<strong>Date:</strong> 23rd,24th and 25th Sept 2022 <br /><br />
<strong>For any querry contact:</strong><br />
Madhur : +91 77260 08683 <br />
<br />
<h5>FAQ</h5>
<a class="link_hover"
href="https://docs.google.com/document/d/1F--IvuZdGOGP_vHT1IqCqzR9OhdEVC86Dy80qlYIskQ/edit?usp=sharing"
target="_blank" rel="noopener noreferrer">Check FAQ here</a>
</div>
<div class="modal-footer">
<!-- <a href="https://forms.gle/ZY86tzhUrJpZsZSW8" target="_blank">
<button type="button" class="btn btn-dark">
Register here
</button>
</a> -->
<a href="https://discord.gg/QvxSJxTn8Q" target="_blank">
<button type="button" class="btn btn-dark">
<i class="fa-brands fa-discord"></i>
Join Community
</button>
</a>
<a href="https://forms.gle/DeeFf52ZjQPz3jTT6" target="_blank">
<button type="button" class="btn btn-dark"> Register Now </button>
</a>
</div>
</div>
</div>
</div>
<!-- Game 3 -->
<div class="modal fade" id="game3" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Fall Guys</h3>
<span class="badge bg-success">Online Event</span>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/g31.png" alt="" style="width: 100%" />
<div class="container my-3">
<div class="alert alert-warning alert-dismissible fade show disscount-alert" role="alert">
*Note: This tournament is open for all.
</div>
</div>
<h5 class="mt-3">GAME ACCOUNTS</h5>
- A player is allowed to have only one (1) Fall Guys ID (Epic/Steam/PSN/XBOX) account active on our google
form.
<br />
- You are not allowed to share or use another person’s game account. Your account is for your use, and your
use alone.
<br />
<h5 class="mt-3">TEAMS AND ROSTERS</h5>
- The game mode will be Solo Shows. <br />
<br />
<h5 class="mt-3"><i class="fa-solid fa-trophy"></i> Prize Pool</h5>
Goodies and vouchers worth ₹5,000
<br />
<h5 class="mt-3">Registration Fees</h5>
<li>Free</li>
<br />
<br />
<strong>Date:</strong> 23rd and 24th Sept 2022 <br /><br />
<strong>For any querry contact:</strong><br />
Madhur : +91 77260 08683 <br />
</div>
<h5>FAQ</h5>
<a class="link_hover"
href="https://docs.google.com/document/d/1F--IvuZdGOGP_vHT1IqCqzR9OhdEVC86Dy80qlYIskQ/edit?usp=sharing"
target="_blank" rel="noopener noreferrer">Check FAQ here</a>
<div class="modal-footer">
<a href="https://discord.gg/QvxSJxTn8Q" target="_blank">
<button type="button" class="btn btn-dark">
<i class="fa-brands fa-discord"></i>
Join Community
</button>
</a>
<a href="https://forms.gle/BTBFFDmTXXSsigKg9" target="_blank">
<button type="button" class="btn btn-dark"> Register Now </button>
</a>
<!-- <a href="https://forms.gle/3Ej9NH5gn85TpmYPA" target="_blank">
<button
type="button"
class="btn btn-dark"
data-toggle="tooltip"
data-placement="top"
title="Fill your team details here"
>
Register here
</button>
</a> -->
</div>
</div>
</div>
</div>
<!-- Game 4 -->
<div class="modal fade" id="game4" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Rocket League</h3>
<span class="badge bg-success">Online Event</span>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/g41.jpg" alt="" style="width: 100%" />
<div class="container my-3">
<div class="alert alert-warning alert-dismissible fade show disscount-alert" role="alert">
*Note: This tournament is open for all.
</div>
</div>
<h5 class="mt-3">GAME ACCOUNTS</h5>
- A player is allowed to have only one (1) Rocket League ID (Steam/Epic/PSN/XBOX) account active on our google
form.
<br />
- You are not allowed to share or use another person’s game account. Your account is for your use, and your
use alone.
<br />
<h5 class="mt-3">TEAMS AND ROSTERS</h5>
-Each team’s roster must consist of at least 3 players.<br />
-Each team’s roster will be allowed to have 3 main players and 1 substitute. Once the tournament starts, you
cannot replace any player.<br />
-A substitute player may only be added before the Tournament Start. <br />
-This player cannot be part of any other team’s roster which is participating or has participated in the same
tournament.
-Match has to be played in the following format: 3v3.<br />
-A player is allowed to represent only one (1) team’s roster in the same tournament.<br />
<br />
<h5 class="mt-3"><i class="fa-solid fa-trophy"></i> Prize Pool</h5>
<strong>Goodies and vouchers worth ₹10,000</strong> <br />
<br />
<h5 class="mt-3">Registration Fees</h5>
300 INR per team
<br />
<h5 class="mt-3">Pre-match</h5>
All the players have to be in the lobby before the time limit goes down (15 minutes).
If there are players missing after this time limit, take a screenshot and post it in the
#ROCKET LEAGUE channel on the NITK ROCKET LEAGUE discord server. The team which has less than
3 players after the time limit will be disqualified from the tournament. If both teams are missing players,
then both are disqualified.
<h5 class="mt-3">Game Format</h5>
-Match has to be played in the following format: 3v3.<br />
-The teams will be divided into Two groups.<br />
-The teams will play in group stage in Best of 1 and Top two teams per group will be selected for the
Playoffs.<br />
-In semi-finals, The table topper of 1st group will play a series of Best of 3 against 2nd team of 2nd group
and Vice versa.<br />
-In the Grand Finale, The finalists will face-off in a series of Best of 7. <br />
<h5 class="mt-3">In Game</h5>
- BOTH THE TEAMS ARE ALLOWED TO TAKE MAXIMUM 1 tactical pause (2 MIN MAX BETWEEN ROUNDS).
<br /><br />
<strong>Date:</strong> 23rd,24th and 25th Sept 2022 <br /><br />
<strong>For any querry contact:</strong><br />
Madhur : +91 77260 08683 <br />
<br />
<h5>FAQ</h5>
<a class="link_hover"
href="https://docs.google.com/document/d/1F--IvuZdGOGP_vHT1IqCqzR9OhdEVC86Dy80qlYIskQ/edit?usp=sharing"
target="_blank" rel="noopener noreferrer">Check FAQ here</a>
</div>
<div class="modal-footer">
<a href="https://discord.gg/QvxSJxTn8Q" target="_blank">
<button type="button" class="btn btn-dark">
<i class="fa-brands fa-discord"></i>
Join Community
</button>
</a>
<a href="https://forms.gle/VYPfUBY3RFFVz1UK7" target="_blank">
<button type="button" class="btn btn-dark"> Register Now </button>
</a>
<!-- <a href="https://forms.gle/3Ej9NH5gn85TpmYPA" target="_blank">
<button
type="button"
class="btn btn-dark"
data-toggle="tooltip"
data-placement="top"
title="Fill your team details here"
>
Register here
</button>
</a> -->
</div>
</div>
</div>
</div>
<!-- event modal -->
<!-- event 1 -->
<div class="modal fade" id="event1" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">DJ Night</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
As the name suggests, DJ Night will be the ultimate event for all the dancers and
partygoers to groove and dance to your favorite tunes and beats. Join in with all your
friends on 24th Sept from 8 PM to 11:30 PM and have the time of your life!
<br />
<h5 class="mt-3">Event 1 (8 PM to 9 PM)</h5>
<h6>Performing Artist - DJ Paranox</h6>
Paranox, aka Parakh Mathur, is a famous EDM artist and DJ. He is arguably the pioneer of
Trap & Bass music in India and has played on India's biggest stages and venues,
including Vh1 Supersonic & Sunburn. His style of fusing Indian elements with the
craziest Bass Drops is a class in itself. He is the captain of the 'Bharatiya Bass
Party' concert.
<br />
<h5 class="mt-3">Event 2 (9 PM to 11:30 PM)</h5>
<h6>Performing Artist - Lost Stories</h6>
Lost stories are synonymous with Dance Music in India and South Asia. Ranked #52 on Dj
mag 2016 and labeled the "Scene Starters" by DJ Mag, Rishab and Prayag began their
journey in dance music in 2008 earlier producing Trance and Progressive House and
garnering support from heavyweights like Tiesto, Armin van Buuren, BT, Markus Schulz,
etc. They then evolved their sound with their debut album – Music for the # Generation
(Universal Music) in 2012, the no 3 Album on Top 100 Dance Albums iTunes Charts. They've
done extensive club and local festivals tours in India, UAE, China, Europe, Mexico, and
multiple South Asian countries.
<br />
So make sure you join us at SAC and have an unforgettable experience!
<br /><br />
<strong>Date:</strong> 24th Sept 2022
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" disabled> Register Now </button>
</div>
</div>
</div>
</div>
<!-- event 2 -->
<div class="modal fade" id="event2" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Robowars</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/e21.jpg" alt="" style="width: 100%" />
The competitors bring their robots ready to battle and are pitted against their competitor's
robots in one-on-one matches. The aim is to push the opponent's robot and immobilize the opponent
robot for a period of 10 seconds to score maximum points. The competition is carried out in a knock-out
format.
<h5 class="mt-3"><i class="fa-solid fa-trophy"></i> Prize Pool</h5>
Worth ₹85,000
<br />
<h5 class="mt-3">Registration Fees</h5>
1500 INR per team
<br /><br />
<h5 class="mt-3">Venue</h5>
Robowars Arena, near Pavilion
<br /><br />
For more details refer
<a href="https://drive.google.com/file/d/1CGKhozbaIdmujpqRA0bRA1ExF569SMoN/view?usp=sharing"
class="link_hover" download="Robowars" target="_blank"><strong>RULE BOOK</strong></a>
<br /><br />
<strong>Date and Time:</strong> 25th September 2022, 8:00 AM
<br />
<br />
Arshad: <a href="tel:+91 73859 57212" class="link_hover"> +91 73859 57212</a>
</div>
<div class="modal-footer">
<a href="https://forms.gle/BErocLg4bWEsXbFX8" target="_blank">
<button type="button" class="btn btn-dark">Registration Link</button>
</a>
</div>
</div>
</div>
</div>
<!-- event 4 -->
<div class="modal fade" id="event4" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Bot Hockey</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/bot_hockey.jpg" alt="" style="width: 100%" />
<h5 class="mt-3">Bot Hockey</h5>
Bot Hockey is an exciting and challenging game featuring teams of remote-controlled robots competing to score
goals
using a puck similar to those used in street hockey. The game rewards teamwork and driving skills more than
exotic
materials and expensively built robots. The rules are a very simplified version of ice/street hockey rules
with
additions for the nature of the robotic players.
<br /><br />
<strong>Venue</strong>: Old Sports Complex/Pavilion
<br />
<strong>Time</strong>: 23rd September 2022, 8:00 AM<br />
<strong>Fee</strong>: 500Rs
</div>
<div class="modal-footer">
<a href="https://forms.gle/8dhm2a2Q8mjbtUyf7" target="_blank">
<button type="button" class="btn btn-dark"> Register Now </button>
</a>
</div>
</div>
</div>
</div>
<!-- event 5 -->
<div class="modal fade" id="event5" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Drone racing</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/e5.jpg" alt="" style="width: 100%" />
Drone racing is a thrilling challenge where players competing against the clock, maneuvering drones through
courses filled with obstacles, gates, targets to score the most points and prove that they are the top drone
pilot.
The team with the most points at the end wins. The entire event will have three rounds. Have a look at the doc
containing
the rules for the event.
<br />
<strong>Date and Time:</strong> 24th September 2022, 8:00 AM<br />
<strong>Venue:</strong> Old Sports Complex/Pavilion
</div>
<div class="modal-footer">
<a href="https://forms.gle/mr6gJSZHYB1UdHCa8" target="_blank">
<button type="button" class="btn btn-dark"> Register Now </button>
</a>
</div>
</div>
</div>
</div>
<!-- event 8 -->
<div class="modal fade" id="event8" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Wright Flight</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/e8.jpg" alt="" style="width: 100%" />
A battle of the skies with the use of remote controlled RC planes requiring them to fly,
perform stunts and drop payloads to gather points. Team with the most points in all rounds win.
<br />
<strong>Date and Time:</strong> 23th September 2022, 9:00 AM - 5:00 PM<br />
<strong>Venue:</strong> Old Sports Complex
</div>
<div class="modal-footer">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdlT99wpmUJzQYDiAi1pwrkrnFRyEwc2ud2iJGnXMpqSQlf5g/viewform"
target="_blank"><button class="tsbutton btn btn-dark">Book
Now</button></a>
</div>
</div>
</div>
</div>
<!-- event 10 -->
<div class="modal fade" id="event10" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Startopia</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
E-Cell Business and Marketing SIGs in collaboration with ENGINEER 2K22 presents Startopia!<br />
An event to that will make you think out of the box!<br />
It is a team event where participants need to be in teams of 2 or 3 throughout the event.<br />
The event consists of 2 rounds,<br />
Round 1: Quiz<br />
Round 2: Based on the scores from Round 1, the teams get to choose a product/capital belonging to different
tiers and will have to prepare a marketing pitch on it. </br>
<br />
<strong>Date and Time:</strong> 23th September 2022, 10:00 AM<br />
<strong>Venue:</strong> LHC C CLASSROOM
</div>
<div class="modal-footer">
<a href="https://forms.gle/8hEfDuQE4oFyD89T6">Register
Now</button></a>
</div>
</div>
</div>
</div>
<!-- event 9 -->
<div class="modal fade" id="event9" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Star EVE</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="./images/e_img/e9.jpg" alt="" style="width: 100%" />
<h5 class="mt-3">Mystery Star</h5>
<br /><br />
<strong>Venue</strong>: SJA
<br />
<strong>Time</strong>: 25th Sept 2022, 6:00pm to 7:30pm <br />
<strong>Fee</strong>: 150Rs <br /><br /><i>Please do bring your valid id proof!</i>
<br />
Limited slots only, so register ASAP
</div>
<div class="modal-footer">
<button type="button" class="btn btn-dark" disabled> Register Now </button>
</div>
</div>
</div>
</div>
<!-- event 11 -->
<div class="modal fade" id="event11" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Curiosity</h3>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Greetings from the Quiz Society (QuizSoc), Literary, Stage and Debating Society of NITK Surathkal!</br>
We are thrilled to announce that we will be conducting two quizzes during NITK Surathkal's annual technology festival, Engineer. It's open to all ages!</br>
1. SciBizTech Quiz - Quiz on all things science, business and technology</br>
2. The Space Quiz - To infinity and beyond!</br>
Registration Fees for both quizzes: Rs. 100 (per team)</br>
Team Size: 3 or less </br>
<br />
</div>
<div class="modal-footer">
<a href="https://forms.gle/r5qwAtDoY6UXzBpH7">Register
Now</button></a>
</div>
</div>
</div>
</div>
<!-- anouncments -->
<div class="mrt-150">
<div class="center">
<div class="container">
<div class="alert alert-warning alert-dismissible fade show disscount-alert" role="alert">
<i class="fa-solid fa-tags"></i> <strong>Important!</strong> <br />
* Fill your Email and other details carefully <br />
* All the payment should be done through
<a class="link_hover" href="https://engineer.nitk.ac.in">engineer.nitk.ac.in</a> website
only
</div>
</div>
</div>
</div>
<!-- games -->
<div class="center">
<div class="mrt-50">
<div class="text-white">
<h2>Games</h2>
</div>
</div>
</div>
<section class="workshops">
<div class="card-grid">
<!-- game -1 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#game1">
<div class="card__background" style="background-image: url(../../images/e_img/g1.jpg)"></div>
<div class="card__content">
<p class="card__category">Game</p>
<h3 class="card__heading">COD Mobile</h3>
</div>
</a>
<!-- game -2 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#game2">
<div class="card__background" style="background-image: url(./images/e_img/g2.jpg)"></div>
<div class="card__content">
<p class="card__category">Game</p>
<h3 class="card__heading">Valorant Tournament</h3>
</div>
</a>
<!-- game -4 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#game4">
<div class="card__background" style="background-image: url(./images/e_img/g4.jpg)"></div>
<div class="card__content">
<p class="card__category">Game</p>
<h3 class="card__heading">Rocket League</h3>
</div>
</a>
<!-- game -3 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#game3">
<div class="card__background" style="background-image: url(./images/e_img/g3.jpg)"></div>
<div class="card__content">
<p class="card__category">Game</p>
<h3 class="card__heading">Fall Guys</h3>
</div>
</a>
</div>
</section>
<!-- events -->
<div class="center">
<div class="text-white">
<h2>Events</h2>
</div>
</div>
<section class="events">
<div class="card-grid">
<!-- event 1 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#event1">
<div class="card__background" style="background-image: url(../../images/e_img/e1.jpeg)"></div>
<div class="card__content">
<p class="card__category">PRO SHOW</p>
<h3 class="card__heading">DJ Night</h3>
</div>
</a>
<!-- event 9 -->
<a class="card" style="color: white" data-bs-toggle="modal" data-bs-target="#event9">
<div class="card__background" style="background-image: url(./images/e_img/e9.jpg)"></div>
<div class="card__content">
<p class="card__category">PRO SHOW</p>
<h3 class="card__heading">Star EVE</h3>
<p>25th Sept 6:00pm - 7:30pm</p>
</div>
</a>
<!-- event 2 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#event2">
<div class="card__background" style="background-image: url(./images/e_img/e21.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">Robowars</h3>
<p>Venue: Robowars Arena, near Pavilion</p>
<p>Date and Time: 25th September 2022, 8:00 AM</p>
</div>
</a>
<!-- event 4 -->
<a class="card" style="color: white" data-bs-toggle="modal" data-bs-target="#event4">
<div class="card__background" style="background-image: url(./images/e_img/bot_hockey.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">Bot Hockey</h3>
<p>Venue: Old Sports Complex/Pavilion</p>
<p>Date and Time: 23th September 2022, 8:00 AM</p>
</div>
</a>
<!-- event 5 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#event5">
<div class="card__background" style="background-image: url(./images/e_img/e5.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">Drone Racing</h3>
<p>Venue: Old Sports Complex/Pavilion</p>
<p>Date and Time: 24th September 2022, 8:00 AM</p>
</div>
</a>
<!-- event 8 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#event8">
<div class="card__background" style="background-image: url(./images/e_img/e8.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">Wright flight</h3>
<p>Venue: New Sports Complex</p>
<p>Date and Time: 23rd sept 9 am - 5 pm</p>
</div>
</a>
<!-- event 3 -->
<a class="card" href="https://engineer.nitk.ac.in/hackathon" style="color: white">
<div class="card__background" style="background-image: url(../../images/hackathon/hackathon_bg.jpg)"></div>
<div class="card__content">
<p class="card__category">Online Contest</p>
<h3 class="card__heading">The Engineer Hackathon</h3>
<p>The Annual Technical Fest Hackathon</p>
<p>Sept 23rd-24th 2022</p>
</div>
</a>
<!-- event 7 -->
<a class="card" href="https://codedrills.io/contests/inscription-2022" style="color: white" target="_blank">
<div class="card__background" style="background-image: url(../../images/hackathon/hackathon_bg.jpg)"></div>
<div class="card__content">
<p class="card__category">Online Contest</p>
<h3 class="card__heading">Inscription</h3>
<p>Venue: CCC first floor</p>
<p>Timings: 2 PM 25th September</p>
<p>Fee: 0</p>
</div>
</a>
<!-- event 10 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#event10">
<div class="card__background" style="background-image: url(../../images/hackathon/hackathon_bg.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">STARTOPIA</h3>
</div>
</a>
<!-- event 6 -->
<a class="card"
href="https://docs.google.com/forms/d/139dgu0ihyylOXx_0ugxvFzDedE-qGi4TjjCwFPUaB4k/edit?ts=6320a202"
style="color: white" target="_blank">
<div class="card__background" style="background-image: url(../../images/hackathon/hackathon_bg.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">Indian ancient science system, Sci-Extempore</h3>
<p>Venue: L206 Main Building</p>
<p>23rd September 11 AM</p>
</div>
</a>
<!-- event 11 -->
<a class="card" href="#" data-bs-toggle="modal" data-bs-target="#event11">
<div class="card__background" style="background-image: url(../../images/hackathon/hackathon_bg.jpg)"></div>
<div class="card__content">
<p class="card__category">Event</p>
<h3 class="card__heading">Curiosity</h3>
</div>
</a>
</div>
</section>
<!-- Footer -->
<footer class="text-center text-lg-start text-white contact_use" id="contact_us"
style="background-color: rgb(20, 20, 20)">
<section class="">
<div class="container text-center text-md-start mt-5">
<div class="row mt-3">
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<h6 class="text-uppercase fw-bold engineer-logo">Engineer</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" style="width: 60px; background-color: #c004d9; height: 2px" />
<p>
Engineer is the Annual Technical Symposium of NITK Surathkal and is one of the
largest of its kind in India.
</p>
</div>
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<h6 class="text-uppercase fw-bold">Discover</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" style="width: 60px; background-color: #c004d9; height: 2px" />
<p>
<a href="https://engineer.nitk.ac.in/team" class="text-white link_hover">Our Team</a>
</p>
<p>
<a href="https://drive.google.com/file/d/1L6aG2vdr-YOZU2WP7yH__68FEwZhFEn_/view?usp=sharing"
target="_blank" class="text-white link_hover" download="Brochure">Brochure</a>
</p>
<p>
<a href="/#timeline" class="text-white link_hover">Schedule</a>
</p>
<p>
<a href="#!" class="text-white link_hover">Suggestions & Feedback</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold">About</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" style="width: 60px; background-color: #c004d9; height: 2px" />
<p>
<a href="https://engineer.nitk.ac.in/about" class="text-white link_hover">About Us</a>
</p>
<p>
<a href="https://www.nitk.ac.in/" class="text-white link_hover" target="_blank">NITK</a>
</p>
</div>
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold">Contact</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" style="width: 60px; background-color: #c004d9; height: 2px" />
<p>
<i class="fas fa-home mr-3"></i> National Institute of Technology Karnataka,
Surathkal, Mangalore - 575 025
</p>
<p>
<i class="fas fa-envelope mr-3"></i>
<a href="mailto:[email protected]" class="link_hover">[email protected]</a>
</p>
<p>
<i class="fas fa-phone mr-3"></i><a href="tel:+91 8839404484" class="link_hover">+91-8839404484</a>
</p>
</div>
</div>