-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChem.html
More file actions
1239 lines (1238 loc) · 49.1 KB
/
Copy pathChem.html
File metadata and controls
1239 lines (1238 loc) · 49.1 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
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>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>Chemical</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/CHEM.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 Chemical Engineering
</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;
"
>
Vibin' Virtually
</p>
<img
src="assets/img/chemforweb.jpg"
width="350"
/>
</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)"
>
Oral Presentation
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Bring forth your trailblazing, avant-garde ideas, in this edition's
Oral Presentation event, for only a small, ground breaking ideas is
enough to ignite the torch in the storm.<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
> Max 3 per Team, Any department <br /><strong
>Platform:</strong
> Zoom<br /><strong>No. of Rounds: 1</strong><br /><strong
>Date/Time: </strong
>Jan 22nd & 23rd, 9am to 11am<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>RULES: </strong><br />- Abstracts are
mandatory.<br />- Pre-recorded power point presentation (voice
over included) not exceeding 10 minutes is mandatory.<br />- Audio
should be muted and video to be kept on for the entire session.<br />-
All the participants must join 10 minutes before the stipulated
time.<br />- Video and audio must be kept on during the
presentation and question and answer time (mandatory).<br />- All
the abstracts and pre-recorded PPTs must be sent to the given mail
id: <a href="mailto:invente.synergy.op@gmail.com"
><span style="text-decoration: underline"
>invente.synergy.op@gmail.com</span
>. Last date for submitting the entries is Jan 15, 6 pm (For extension, contact us)</a
>. <br />- 10 minutes for the presentation and 5 minutes for
the question and answer time. Hence 15 minutes allotted per
team.<br />- All registered participants must be present
throughout the session.<br />- Link for zoom meeting will be sent
prior to the event to the respective mail ids. <br />- Every
participant is required to ensure stable internet connectivity for
the entire session. If any issues must login using the same link
again.<br />- Participants must login with the following format<br />[OP-Team
Number-Name]. <br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Thrust areas: </strong><br />- Wastewater
treatment<br />- Environmental engineering<br />- Material
technology<br />- Nano technology<br />- Process optimization<br />-
Biochemical and Biotechnology<br />- Fuels and Chemicals<br />-
Separation<br />- Pollution abatement/Waste management <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>Bharkavi B:</strong>
94450 22675<br /><strong>Lakshman K:</strong> 90476 12624<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)"
>
Riddler's Picture Show
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
The Chemi evil prankster is back again, this time with pictures!
Summon your inner Batman to solve the Riddler's riddles and go on to
decipher an explosive word at the end!!<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
><strong> </strong>Technical<br /><strong
>Participation:</strong
> Team of 2-3, Chemical department<br /><strong
>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong>2<br /><strong
>Date/Time: </strong
>Jan 22nd, 11am 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 />- Participants will receive
the zoom link well in advance before the round starts to their
respective Mail ID.<br />- Participants should join the zoom
platform with the video ON and audio OFF.<br />- The Participants
will be separated into teams and each team will be sent into
separate breakout rooms.<br />- There will be 3 volunteers who
will be there to see if anyone is engaged in any kind of foul
play.<br />- For this round, a Google Form will be shared in the
zoom chat section. It consists of 10 questions, which needs to be
answered in 15 minutes.<br />- The Team should find out the common
word connecting the two pictures given and give the correct
chemical engineering technical word.<br />- Participants need to
submit the Google form within 15 minutes after which it won’t
accept responses.<br />- There should be only one submission per
team (i.e.) only one Google form must be submitted per team.<br />-
Each correct answer fetches you 10 points and no negative
marking. There will also be special starred questions within
the 10 questions which will be considered if there is a
tie. <br />- HAPPY CONNECTING <br />- The top 'n' teams
(depending upon how many teams register) with the highest score
will be shortlisted for the final round.<br />- Zoom link for the
shortlisted teams will be shared to their registered Mail
ID. <br /><br />(Duration: 25min)<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />Shortlisted teams must join
the zoom with the video ON and audio OFF.<br />- Volunteers will
be present to see if they are indulging in any kind of
malpractices.<br />- Each Team will be given with separate
breakout rooms.<br />- Through screen sharing, the questions will
be shared by event coordinators.<br />- Each question will consist
of five clues with which the participants must try to find the apt
chemical engineering word.<br />- Participants can send their
answers through private message on zoom chat.<br />- The team
which answers the first only will be given points.<br />- There
will be a total of 5 questions with 5 clues for each question.<br />-
Each clue will be displayed for a duration of 15 seconds.<br />-
The Team which finds the word in 1st clue will be given 50 points,
if found in 2nd clue will be given 40 points, in 3rd clue with 30
points and so on.<br />- There will be negative marking of -10
points where if the team attempts to answer the question but fails
to do so in the 1st clue.<br />- If the same team answers that
question in the 4th, 3rd or lower clues (the points would be for
ex: 30-10=20 points)<br />- Winner will be selected based on which
team has the highest of points at the end of five questions.<br />-
If there is a tie there will be a tie breaker question. <br /><br />(Duration:
20min)<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>Abhishek R:</strong>
9566613745<br /><strong>Arvind Kumar R:</strong> 9952436971 <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)"
>
Black Sheep
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Bad News- Much like Shaun the sheep, it’s not going to fit with
everything else.<br />Good News- Like him, the great ones never have
to.<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
><strong> </strong>Technical<br /><strong
>Participation:</strong
> Max 2 per Team, Chemical department<br /><strong
>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 1pm to 2pm<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 />- Participants will receive
the zoom link well in advance before the round starts to their
respective Mail ID.<br />- Participants should join the zoom
platform with the video ON and audio OFF.<br />- There will be 3
volunteers who will be there to see if anyone is engaged in any
kind of foul play.<br />- For this round, a Google Form will be
shared in the zoom chat section.<br />- It consists of 30
questions, which needs to be answered in 15 minutes.<br />- Each
question will consist of four options of which the participant
must choose the odd one out.<br />- Participants need to submit
the Google form within 15 minutes after which it won’t accept
responses.<br />- There should be only one submission per team
(i.e) only one Google form must be submitted per team.<br />- Each
question carries one mark and no negative marking.<br />- Some
starred questions will be there, which will be considered if there
is a tie.<br />- The top 'n' teams (depending upon how many teams
register) with the highest score will be shortlisted for the final
round.<br />- Zoom link for the shortlisted teams will be shared
to their registered Mail ID.<br /><br /><br />(Duration:
20-25min)<br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />- Shortlisted teams must join
the zoom with the video ON and audio OFF.<br />- Volunteers will
be present to see if they are indulging in any kind of
malpractices.<br />- Through screen sharing, the questions will be
shared by event coordinators.<br />- Each question will consist of
four options of which the participant must choose the odd one
out.<br />- Participants can send their answers through private
message on zoom chat.<br />- There will be a total of 15 questions
and for each question 40 seconds will be allotted to answer
them.<br />- Each question carries one mark and no negative
marking.<br />- Starred questions will be considered in case of a
tie.<br />- Winner will be selected based on which team answers
correctly first.<br /><br />(Duration: 20min)
</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
>Hemapriya. D:</strong
> 8124597468<br /><strong>Malarvizhi. A: </strong
>8667447621<br /><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)"
>
PoCHEMon, gotta quiz em' all!
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Are you a PoCHEMon who can handle a legion of chemical engineering
questions? Come get quizzed- from trivia to troubleshooting and prove
your worth in this technical quiz!<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> Only Chemical engineering and allied branches<br /><strong
>Participation:</strong
> Teams of 2, Any department<br /><strong>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 23rd, 3pm 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 />- Participants will receive
the zoom link well in advance before the round starts to their
respective Mail ID.<br />- Participants should join the zoom
platform with the video ON and audio OFF.<br />- There will be 3
volunteers who will be there to see if anyone is engaged in any
kind of foul play.<br />- For this round, a Google Form will be
shared in the zoom chat section.<br />- It consists of 30
questions, which needs to be answered in 15 minutes.<br />- Each
question will consist of four options of which the participant
must choose the odd one out.<br />- Participants need to submit
the Google form within 15 minutes after which it won’t accept
responses.<br />- There should be only one submission per team
(i.e) only one Google form must be submitted per team.<br />- Each
question carries one mark and no negative marking.<br />- Some
starred questions will be there, which will be considered if there
is a tie.<br />- The top 'n' teams (depending upon how many teams
register) with the highest score will be shortlisted for the final
round.<br />- Zoom link for the shortlisted teams will be shared
to their registered Mail ID.<br /><br /><br />(Duration:
20-25min)<br /><br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />- Shortlisted teams must join
the zoom with their video “ON” and audio “OFF”.<br />- Volunteers
will be present to see if the participants are indulging in any
kind of malpractices.<br />- For this round, a Google Form will be
shared in the zoom chat section.<br />- There will be a total of
15 questions, which are supposed to be answered in 10 minutes.<br />-
Each question will consist of four options, out of which the
participant must choose one.<br />- Participants need to submit
their Google form within 10 minutes. Forms submitted after that
will not be accepted.<br />- There should be only one submission
per team (i.e., only one Google form must be submitted per
team.)<br />- Each question carries one mark and no negative
marking.<br />- Winner will be selected based on the marks.<br />-
In case of tie, winner will be selected based on which team
submitted the response first.<strong> </strong
><br /><br />(Duration: 15min)
</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>Subash.J:</strong>
9585832690<br /><strong>Mehala.R: </strong>9488367656<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-4"
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)"
>
Kid vs Kat
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Arm yourself with words and figurative claws as Kid and Kat find
themselves at odds and have a go at each other, this time with
words!!<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
><strong> </strong>Technical<br /><strong
>Participation:</strong
> Individual, Chemical department<br /><strong
>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 2pm 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 />- The meeting link will be
sent to the participants in advance to their registered mail
IDs.<br />- Participants are required to join the meeting with
their video and audio OFF.<br />- The hosts and co-hosts will ask
the participants to unmute whenever necessary.<br />- The prelims
require the participants to express their insights on the topic
assigned to them, with individual speaker time not exceeding 5
minutes.<br />- The topics are: <br />1. Waste management<br />2.
Production process modification<br />3. EVOP
methodology <br />4. Biomass conversion techniques<br />5. Carbon
sequestration <br />- The finalists will be selected at the
discretion of the jury panel, with important criteria being
knowledge, flow and accuracy of the data used.<br />- Participants
are requested to stay civil.<br />- Irrespective of the number of
participants, SIX participants will be selected for the final
round. <br /><br />(Duration: 60min)<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />- Participants will be
informed of the topic and their affiliation before the final round
commences.<br />- The final round will have two segments.<br />-
The first segment will be a constructive debate session with
individual speaker time not exceeding 3 min.<br />- The second
segment will be an interactive session that requires the
participant to answer questions from the jury panel and other
participants- individual participant time not exceeding 7 min.<br />-
3 prizes will be given: 2 based on the performance in the final
round and 1 based on overall consistency.<br />- Participants are
requested to be punctual. <br /><br />(Duration: 60min)<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
>Steban Raj P:</strong
>
+91 96778 34063<br /><strong>Annamalai PL:</strong> +91 85250
01238<br /><strong>Sai Jayaraman R: </strong>+91 75502
44657<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)"
>
The Chosen One
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Hurry!! The industry is falling apart! "Mind-bend" the jury, just like
the Avatar, quick and fast, as to why you deserve to be the Chosen
One!<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
>
<strong> </strong>Technical<br /><strong
>Participation:</strong
> Individual, Only Chemical engineering and allied branches<br /><strong>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong>1-2<br /><strong
>Date/Time: </strong
>Jan 23rd, 1pm to 3pm<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 the participants will be
provided with the zoom link to their registered email ID, in
which the general instructions about the event will be
provided.<br />- The video should be turned on during the entire
event and the audio should be turned on when it’s their turn to
speak.<br />- Each member will be assigned with different chemical
engineering industrial roles respectively (E.g. Process engineer,
design engineer, cost engineer etc.) and an industrial problem to
solve. <br />- A brief description about the role would be
explained before the commencement of the event.<br />- Each
participant would be given 5 minutes to prepare, to provide valid
solutions according to their assigned roles, to the given
industrial problem.<br /><br />(Duration: 5-10min)
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Judging Criteria</strong><br />- Spontaneity in
providing insights related to the role assigned.<br />-
Significant core knowledge. <br />- Valid arguments to
address the given problem.<br />- To be able to provide suitable
response to the questions posed by the panel.<br />- Creativity
and out of the box thinking will be suitably noted.
<br /><br /><strong>Domain of Industry:</strong><br />- Petroleum
& petrochemical industry. <br />- Paper and pulp industry.<br />-
Pharmaceutical industry.<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>Shreya S:</strong
> 7550132076<br /><strong>Adithya Srikanth:</strong>
7358160479<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)"
>
Shutter Up
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Handy with a camera like Charlie Brown? Click away to catch the most
beautiful reactions of life!<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 Technical<br /><strong
>Participation:</strong
> Individual, Any department<br /><strong>Platform:</strong
> Instagram<br /><strong>No. of Rounds: </strong
>1<br /><strong>Date/Time: </strong>Jan 22nd, 12pm 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 />- Participants will be asked to register in the given link
(Google form).<br />- Registered participants must mail their
photographs to
<a href="mailto:invente.synergy.shutterup@gmail.com"
><strong
><span style="text-decoration: underline"
>invente.synergy.shutterup@gmail.com</span
></strong
></a
>
in the following accepted formats: .jpg, .jpeg, and .tiff.<br />-
ONLY ONE submission per participant is allowed.<br />- The
photograph must not have any obscene content.<br />- The
photograph must not represent any particular individual,
organization or brand name and must not depict any religious
theme.<br />- Last date for submitting the entries is January
15th, 6:00 pm, 2021.<br />- Winners are decided based on the
calculated number of likes, shares and comments.<br /><strong
>Submissions that do not abide with the rules will NOT be
accepted and registration fee will not be
refunded. </strong
><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>Anas:</strong
> 9444037672<br /><strong>Sharumitha:</strong
> 8667528734<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)"
>
Memer Bros
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Do you sync your daily life with Vadivelu and Cheems? Go creative and
make some Memes with just the right amount of satire and fun like the
Tiny Toons!!<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
> Instagram<br /><strong>No. of Rounds: </strong
>1<br /><strong>Date/Time: </strong>Jan 23rd, 12pm 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 />- Participants have to send their memes to
<a href="mailto:invente.synergy.mb@gmail.com"
><strong
><span style="text-decoration: underline"
>invente.synergy.mb@gmail.com</span
></strong
></a
><br />- Only one meme per participant will be considered
valid.<br />- The image aspect ratio should be in the standard 1:1
Instagram format.<br />- Memes should not display any forms of
obscene content.<br />- The event winner will be selected based on
the number of likes their meme has garnered in the Instagram
page.<br />- The last date for receiving memes is January
(tentative)<br /><strong
>Submissions that do not abide with the rules will NOT be
accepted and registration fee will not be
refunded. </strong
><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>Mugilan L:</strong>
9789922100<br /><strong>Abhishek B:</strong> 9566093443 <br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-8"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">