-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbme.html
More file actions
949 lines (948 loc) · 34.5 KB
/
Copy pathbme.html
File metadata and controls
949 lines (948 loc) · 34.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>BioMedical</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=ABeeZee"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Alef"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Amiko"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Droid+Serif"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Muli"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"
/>
<link rel="stylesheet" href="assets/fonts/ionicons.min.css" />
<link rel="stylesheet" href="assets/css/Elegant-Registration-Form.css" />
<link rel="stylesheet" href="assets/css/Footer-Dark.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.1.1/aos.css"
/>
<link rel="stylesheet" href="assets/css/LinkedIn-like-Profile-Box.css" />
<link rel="stylesheet" href="assets/css/Login-Form-Dark.css" />
<link rel="stylesheet" href="assets/css/Model-Gallery-And-Profile.css" />
<link rel="stylesheet" href="assets/css/Navigation-with-Button.css" />
<link rel="stylesheet" href="assets/css/Profile-Card.css" />
<link rel="stylesheet" href="assets/css/Profile-Picture-With-Badge-1.css" />
<link rel="stylesheet" href="assets/css/Profile-Picture-With-Badge.css" />
<link rel="stylesheet" href="assets/css/Registration-Form-with-Photo.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body
style="
background-color: rgb(0, 0, 0);
background-image: url('assets/img/BME.png');
background-repeat: repeat;
background-size: contain;
"
>
<nav
class="navbar navbar-light navbar-expand-md sticky-top navigation-clean-button"
data-aos="fade-down"
data-aos-duration="1000"
data-aos-once="true"
style="background-color: rgba(0, 0, 0, 0.85); margin-top: 0px"
>
<div class="container-fluid">
<a href="https://www.ssn.edu.in/"
><img src="assets/img/Untitled-1.png" width="50" /></a
><a href="index.html"
><img src="assets/img/invente_5.0_logo.png" width="150" /></a
><button
data-toggle="collapse"
class="navbar-toggler float-right"
data-target="#navcol-1"
style="background-color: rgb(240, 112, 0)"
>
<span class="sr-only">Toggle navigation</span
><span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse text-right float-right d-xl-flex justify-content-xl-end"
id="navcol-1"
>
<ul class="nav navbar-nav text-center ml-auto">
<li class="nav-item" role="presentation">
<a
class="nav-link"
id="nav_link0"
style="color: #f07200"
href="index.html"
>< Back<br
/></a>
</li>
</ul>
</div>
</div>
</nav>
<section
class="text-center d-xl-flex justify-content-center justify-content-xl-center"
id="intro_ece-1"
style="margin-top: 172px; background-color: #000000"
>
<div
class="container"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
>
<h1
class="display-3 text-center shadow-lg d-flex d-xl-flex flex-grow-1 flex-shrink-1 flex-fill justify-content-center align-items-center mx-auto justify-content-xl-center"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
style="
background-color: rgb(0, 0, 0);
color: rgb(240, 114, 0);
margin-top: 50px;
"
>
Department of BME
</h1>
<p
class="text-center d-flex flex-grow-1 justify-content-center justify-content-xl-center"
data-aos="fade-up"
data-aos-duration="1500"
style="
color: rgb(240, 114, 0);
font-weight: bold;
font-style: normal;
font-family: Alef, sans-serif;
margin-top: 45px;
z-index: 999999;
"
>
<br /><strong>Vibin' Virtually</strong><br />
</p>
<img src="assets/img/abelogo1.png" width="150" />
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-0"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Medical Mystery
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Medical Mystery
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Two per Team, Any department <br /><strong
>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong>2<br /><strong
>Date/Time: </strong
>Jan 22nd, 9am to 12pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br /><em>Finding round</em> -
The slides will be displayed for few seconds. They have to find
what it is and have to note it down. Participants who found
correctly and got high scores will be selected for the Round 2.
<br /><br />(Duration- 2 hr)<br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br /><em>Guess what it is? </em>–
Five clues will be given to the participants. Every clue will be
displayed at a particular time interval. Participants who found it
correctly at short time will be announced as winners of the event.
<br /><br />(Duration-15 mins)<br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Srividya.S: </strong
>9750368582<br /><strong>Karishma.S:</strong> 8870396414<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-1"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Sketch Up
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
As Invente5.0 is occurring virtually this year , the department
of biomedical engineering is coming up with an interesting competition
which improves your designing and creativity skills. The winners will
be evaluated by three rounds starting from easy to difficult level
.You will need to use the 3d designing software fusion 360 for the
event.<br />
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Individual, Any department<br /><strong>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong>3<br /><strong
>Date/Time: </strong
>Jan 22nd, 10am to 1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />The first round is the basic
level in which the students are allowed to design anything with
any four tools bringing out the simplicity <br />and creativity in
them. (Duration-45 mins)<br /><br /><strong>Round 2</strong
><br />The intermediate round in which the students will be given
five set of tools to design any product. (Duration-45 mins)<br /><br /><strong
>Round 3</strong
><br />The shortlisted students will be moving to the final
round where they have to design a biomedical instrument within a
limited time. (Duration- 1 hr)<br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Note:</strong><br />- All the students should have
an Autodesk fusion360 software in their laptops/pc.<br />- After
Registration, Installation procedure and basics on the software
videos will be given . For those who are new to this software can
see the video and practice it in prior.<br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Lokesh kumar:</strong
>
8072233516<br /><strong>Lal bhaveen:</strong> 7708779016<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-2"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Dead Man's Chest
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
You are on a pirate heist with your crew on the Black Pearl in search
of the Dead man's chest. But you are not the only ones. Only the crews
that survive a series of tasks and have the most victories get to ask
for Calypso's help to find the Dead Man's Chest, the heart of Davy
Jones.<br />The crew that convinces her to help them will win eternal
life, treasures and the power of The Flying Dutchman.<br />
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 3-5, Any department<br /><strong>Platform:</strong
> Zoom/Meet<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 10am to 12pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Prelims:</strong><br />The crews will fight against
each other to get Calypso on their side. They will be selected
based on a series of technical games.<br /><br />(Duration: 30-45
mins)<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Finals:</strong><br />The teams that survive the
prelims tasks get to meet Calypso and convince her to help them
find the Dead Mans's Chest. The crew that is most creative and
convincing wins, not just the game, but eternal life, treasures
and the power of The Flying Dutchman as well.<br /><br />(Duration:
15 mins)<br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Janaki R:</strong>
9345758522<br /><strong>Maanasa Guru Adimurthy:</strong> 80150
57891<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-3"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
e-Biomart
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
This online event tries to bring out the fun entrepreneur in the
participants, while also allowing them to understand the avenue of
hospitals. Contestants can engage in a battle of wits, try to come up
with innovative solutions to problems posed to them, while at the same
time ensuring their hospital runs smooth! The event is broken down
into two rounds, with victors from the first round moving on to the
second, from which the overall event winners and 2 runners are
chosen.<br />
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 3-5, Any department<br /><strong>Platform:</strong
> TBA<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 23rd, 9am to 1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />After being introduced to the
functioning of hospitals and the problems they face on a daily
basis, the teams are presented with select problem statements, in
two broad categories: administration and functional. Teams have to
choose one from each category and provide efficient solutions for
both, thus proving their mettle as a well-rounded team. After due
deliberation, the best teams are advanced to the second round.<br /><br />(Duration-45
mins)<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />Things get interesting. Sharp
minds are further tested. The teams are made to participate in an
auction for medical equipment, with each team receiving a certain
number of virtual bucks and a blueprint of mandatory equipment to
be present in their hospital. Different manufacturers for
different equipment are presented for auction, with each having
their own pros and cons. Post auction, the teams are posed with
other issues, which they can resolve by communicating with
different teams, setting aside their differences, thus bringing
out the negotiator in them. The teams are in the end judged based
on certain rubrics, which will be explained during the
event. <br /><br />(Duration- 3 hrs)<br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /> <strong
>Pranav Krishna R:</strong
>
9884063970<br /><strong>Shankharan S:</strong> 9600041864<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-5"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Paper Presentation (2020)
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Paper Presentation
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Individual, Any department<br /><strong>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong>2<br /><strong
>Date/Time: </strong
>Jan 23rd, 9am to 1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Event Description:</strong><br />The participant has
to submit an abstract on one the domains given below:<br />-
Healthcare technology<br />- Nano electronics<br />- Bio signal
processing<br />- Artificial organs<br />- Physiological
modelling<br />- Digital image processing<br />- Artificial neural
networks<br />- VLSI signal processing<br />- Real time embedded
systems<br />- Robotics<br />Based on the abstract, selected
participants will be called for the second round where they will
be asked to give a presentation. The winner will be decided based
on the presentation.<br /><br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />- Abstract has to be submitted
(word document) in not more than 300 words before the due date.<br />-
Based on peer review of the abstracts, contestants will be
shortlisted for the next round. Students with maximum scores will
be shortlisted.<br /><br /><strong>Round 2</strong><br />If
chosen, the soft copy of the paper with the abstract (not more
than 10 pages including reference, tables and graphs) has to be
submitted on the day of the event in a word document.<br />- The
paper should be in IEEE format and written in Times New Roman
font. <br />- The ‘Microsoft PowerPoint’ presentation should
be mailed to the organizing team and can last for a maximum of 7
minutes.<br />- There will be a 3 minutes Q&A session
following it.<br />- Winners will be announced based on the scores
of Round2.<br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Shwetha Sridhar:</strong
> 7200845167<br /><strong>P. Florina Jane:</strong
> 9176677030 <br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-6"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Escape the Hill House
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
You’re stuck inside the Red Room with your squad and there’s only one
way out. Will you escape? Or will you walk there alone, forever?
<br />
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong
>Non<strong> </strong>Technical<br /><strong
>Participation:</strong
> 4 per Team, Any department<br /><strong>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong>2<br /><strong
>Date/Time: </strong
>Jan 22nd, 1pm to 4pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />Simple Tasks:<br />- General
MCQ<br />(Duration – 20 mins)<br /><br /><br /><br /><strong
>Round 2</strong
><br />ESCAPE THE HILL HOUSE:<br />(Duration – 45 mins)<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>General instruction:</strong><br />- Switching tabs
is not allowed<br />- Usage of mobile phones is strictly
prohibited<br />- Video must be on at all times<br /> <br /> Decode
the clues to know your way out of the Hill House.
Remember! What doesn't kill you makes you stronger. Or does
it? <br /><br /><br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Shri Harini R:</strong
>
9840311099<br /><strong>Anushaa A:</strong>7550193240<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-7"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Min-e Olympics
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Participants will be matched in 1 vs 1 wager type mini games. A total
of 3 games will be played and the first player to reach 2 points is
the winner of the wager. <br />
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong
>Non<strong> </strong>Technical<br /><strong
>Participation:</strong
> Individual, Any department<br /><strong>Platform:</strong
> Hackerrank, Zoom<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 23rd, 1pm to 4pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />All participants take part in
multi events in a knockout basis to finalize the final half of
participants.<br />(Duration – 45 mins)<br /><br /><strong
>Round 2</strong
><br />Involves 3 games of various events for the finalists and
total points are tallied to decide the top 3 candidates.<br />(Duration
– 2 – 2.5 hrs)<br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Games:</strong><br />- Ludo<br />- Snakes and
ladders<br />- Chess (blitz)<br />- Connect 4Cup<br />- Pong<br />-
Battle Ship<br /><em>And many more.</em><br /><br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Nrupesh:</strong>
8056133866<br /><strong>Venkataramanan:</strong>
8805538330<br /><br /><br /><br />
</p>
</div>
</div>
</div>
</section>
<div class="footer-dark">
<footer data-aos="fade-up" data-aos-duration="750" data-aos-once="true">
<div class="container">
<div class="row">
<div
class="col-md-6 item text"
data-aos="fade-up-right"
data-aos-duration="1000"
data-aos-once="true"
>
<img
class="img-fluid"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
src="assets/img/invente_5.0_logo.png"
style="
width: auto;
max-width: 145px;
max-height: 55px;
height: auto;
"
/>
<p
data-aos="fade-up"
data-aos-duration="1200"
data-aos-once="true"
style="margin-top: 17px"
>
Invente is a two-day techfest built around encouraging budding
engineers to showcase their talents with unbridled
enthusiasm.<br />
</p>
</div>
<div
class="col item social"
data-aos="fade-up-right"
data-aos-duration="1000"
data-aos-once="true"
>
<h4 style="margin-bottom: 49px">Get in touch !</h4>
<a
data-aos="fade"
data-aos-duration="1200"
data-aos-once="true"
href="https://www.facebook.com/ssninvente"
><i class="icon ion-social-facebook"></i></a
><a
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
href="https://twitter.com/ssn_invente?lang=en#:~:text=SSN%20Invente%20(%40ssn_invente)%20%7C%20Twitter"
><i class="icon ion-social-twitter"></i></a
><a
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
href="https://www.linkedin.com/school/ssn-college-of-engineering/"
><i class="icon ion-social-linkedin-outline"></i
></a>
<a
data-aos="fade-up"
data-aos-duration="1800"
data-aos-once="true"
href="https://www.instagram.com/ssn_invente5.0/"
><i class="icon ion-social-instagram"></i
></a>
</div>
</div>
<p
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
class="copyright"
>
made by
<a
class="shadow-lg"
href="https://github.com/jayvishaalj"
style="
color: rgb(230, 109, 0);
font-weight: bold;
filter: brightness(99%) contrast(104%);
"
>Jay Vishaal J, </a
>
<a
class="shadow-lg"
href="https://github.com/kalki7"
style="
color: rgb(230, 109, 0);
font-weight: bold;
filter: brightness(99%) contrast(104%);
"
>project_kalki, </a
>
<a
class="shadow-lg"
href="https://github.com/Dabrin26"
style="
color: rgb(230, 109, 0);
font-weight: bold;
filter: brightness(99%) contrast(104%);
"
>Dab. </a
>
<br />llustrations by <a
class="shadow-lg"
href="https://www.instagram.com/amrithahaha/"
style="
color: rgb(230, 109, 0);
font-weight: bold;
filter: brightness(99%) contrast(104%);
"
>Amritha,</a
>
<a
class="shadow-lg"
href="https://www.instagram.com/sushstudios/"
style="
color: rgb(230, 109, 0);
font-weight: bold;
filter: brightness(99%) contrast(104%);
"
>Sush.</a
><br />
© 2020
<a
class="shadow-lg"
target="blank"
href="https://github.com/orgs/SSN-Invente-2020/people"
style="
color: rgb(230, 109, 0);
font-weight: bold;
filter: brightness(99%) contrast(104%);
"
>
#SSN_WEB_DEV_HUMANS_ON_EARTH,</a
> All Rights Reserved.<br /><br /><br />
</p>
</div>
</footer>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.1.1/aos.js"></script>
<script src="assets/js/Model-Gallery-And-Profile.js"></script>
</body>
</html>