-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathww.html
More file actions
942 lines (933 loc) · 34.4 KB
/
ww.html
File metadata and controls
942 lines (933 loc) · 34.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>Workshops</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); opacity: 1">
<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"
>
<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;
"
>
Webinars and Workshops
</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>
</div>
</section>
<!-- <section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-3"
style="margin-top: 150px"
>
<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)"
>
Chemical Webinar
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A Unique Webinar by the Department of Chemical Engineering<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
> Any department <br /><strong>Platform:</strong
> TBD<br /><strong>Date/Time: </strong>Jan 23rd, 11am to
12pm<br /><strong>Registration Fees:</strong> TBD<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>Topic: </strong>Importance of Research and
Development sector in a chemical industry. <br /><strong
>Speaker:</strong
>
Will be announced soon<br /><br />https://forms.gle/cfpyPxGRQfGi3WLPA<br />E-Certificates
will be provided.<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>Deepika V:</strong>
7358731139<br /><strong>Subha Lakshmi M:</strong>
8939490247 <br />
</p>
</div>
</div>
</div>
</section> -->
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-0"
style="margin-top: 150px"
>
<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)"
>
Hands-on IOT Workshop
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A very good understanding of Internet of Things (IoT) and its
exploding applications.<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
> All departments <br /><strong>Platform:</strong
> Zoom<br /><strong>Date/Time: </strong>22nd January<br /><strong
>Registration Fees:</strong
>
Rs.500/person<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>Description :</strong><br />
IOTs have created a great impact on industrial revolution. So it
becomes necessary to equip with the current industrial
technologies. The pervasive nature of hooking anything to the
Internet opens up a new era of imagination and deployment for a
connected world with endless possibilities.
<br /><br /><strong>AGENDA:</strong><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>Session 1:</strong><br />Introduction to IOT,
Building your own IOT system<br />o Introduction to IOT
(Definition, what is IOT?)<br />o Typical IOT system and how it
works?<br />o Different Types of IOT System <br />o IOT
Protocols<br />
o System – Smart System – IOT System<br />
o IOT Opportunities & Challenges<br />
o IOT Applications<br />
o Components of IoT System<br />
o Introduction to Electronic system<br />
o Preparing Sensor Node<br />
o Overview of Non OS and OS based Hardware<br />
o Software Programming in IOT<br />
o Communication Models<br />
o Data Analytical (AI – Basics)<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Session 2:</strong><br />Hands-on- IOT
implementation using MQTT & HTTP protocols<br />o MQTT Basics:
Establishing MQTT clients as publisher / subscriber and connect to
the broker to exchange messages using MQTT Protocol send and
receive data from Eclipse cloud server. <br />
o Use your IOT end device as one of the client and mobile app
/desktop version of MQTT client as another client <br />
o Using HTTP protocol send data to cloud server <br />
o Visualize the data in mobile app & Cloud server
</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>System requirements:</strong><br />- OS – windows 7
and more. <br />-Minimum disk space 4GB <br />-4GB RAM
<br />-Online software link will be available for the
participants.
<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>RISHIRAM.M:</strong>
7339107604<br /><strong>LOKESHWARAN:</strong>
8608594658<br /><strong>SARVESH S.V:</strong> 9843409159
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-1"
style="margin-top: 150px"
>
<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)"
>
BIM - REVIT Architecture
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A Unique workshop by the Department of Civil Engineering<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
> Civil Engineering and Architecture Students <br>
<strong>Topic:</strong> BIM-Revit Architecture<br /><strong>Platform:</strong
> Zoom/GMeet<br /><strong>Date/Time: </strong>Jan 23rd,
11am to 2pm<br /><strong>Registration Fees:</strong>
Rs.100/participant
</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>Description:</strong><br />Excited about making intelligent virtual
models of buildings and diverse infrastructures? Curious to analyze, design and
visualize your models using Virtual Reality? You’ve come to the right place!
Join us in learning the most sought-of BIM software – Revit Architecture and
simulate digital models. <br><br>
<strong>General Instructions:</strong><br>
• Participants will be given theoretical and practical training in Revit
Architecture software by expert trainers from Construction Management Training
Institute (CMTI), Bengaluru, a professional organization aimed at training
students for overall development as a civil engineering professional <br>
• Participants should ensure they have proper internet connection <br>
• Participants will receive a certificate of participation on attending
the workshop <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>Janani J:</strong>
9600478222<br /><strong>Deenadayalan G:</strong> 9841734684<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-4"
style="margin-top: 150px"
>
<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)"
>
Workshop on Space Biology
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A Unique Workshop by the Department of Bio-Medical Engineering<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
> Any department <br /><strong>Platform:</strong
> Zoom/Google Meet<br /><strong>Date/Time: </strong>Jan 23rd,
9am to 1pm<br /><strong>Registration Fees:</strong>
Rs.100/participant<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 />Does the
engineering and other aspects of space travel intrigue you? Have
you wondered how it affects the living systems in spacecrafts? Our
one-day workshop is exactly what you need! IEEE EMBS offers you
this exciting opportunity to explore and learn more about space
biology.<br /><br /><strong>Requirements: </strong><br />The
participants will be sent a mail with the meeting ID ,link,
required software and download instructions days before the
workshop.<br />Required reference materials will be forwarded to
the participants.<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>Nanthini N:</strong
> 9962908805<br /><strong>Varsha Seshadri:</strong>
8489663279<br /><br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-5"
style="margin-top: 150px"
>
<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)"
>
HACKINFINITY
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A Hackathon by the Department of Electronics and Communication
Engineering<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 2-4. Any department <br /><strong
>Platform:</strong
> Discord and Google Meet<br /><strong>Date/Time: </strong
>Jan 22nd, 10.30am to Jan 23rd 2.00pm<br /><strong
>Registration Fees:</strong
>
Rs.250/team<br />
<strong>Last day for submission of abstract: </strong>Jan 09,
2021<br />
<strong>Link for submission: </strong>
<a href="https://forms.gle/yJbny4UVt5C3fLA39 "
>https://forms.gle/yJbny4UVt5C3fLA39</a
><br />
<strong>Rules for submission: </strong>Submit the final
presentation in PDF format only.<br />
No need to pay the general registration fee to submit
abstracts.<br />
Only the shortlisted teams will be contacted to pay and
register.<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>General Instructions:</strong><br />- It is not
necessary that all participants must be from same institute.<br />
- All the team members should have proper internet connection.<br />
- Abstracts should be submitted on or before Jan 09 2021, 6PM.<br />
- The teams with the best abstracts will be shortlisted for the
Hackathon.<br />
- Teams of a minimum of 2 and a maximum of 4 people are
allowed.<br />
- Participants are required to have their own components and
software.<br />
- Mentorship for technical skills will be given.<br />
- Participants are supposed to build their product during the
Hackathon.<br />
- Product will be judged based on Innovation, Impact, Feasibility
and Marketability.<br />
- Product can be a mix of hardware and software technologies, but
can be purely software or hardware based as well.<br />
- Participants are requested to register their team and send in
their abstract before the deadline using the form (will be
provided soon).<br />
- Participants are allowed to use existing libraries or
components, however only the work done during the 24hrs will be
considered for evaluation.<br />
<br /><br /><strong>Domains for Problem Statement:</strong><br />-
Data Security<br />- Medical and Healthcare<br />- Software
Development<br />- Robotics<br />- Student innovation <br /><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>Schedule:</strong><br /><br /><strong>Day 1:</strong
><br />10.30 AM – Virtual meet set up<br />11.30 AM –
Introduction<br />12.00 PM – Hackathon starts<br />04.00 PM –
First Review<br /><br /><strong>Day 2:</strong><br />01.00 AM –
Second Review<br />08.00 AM – Third Review<br />12.00 PM –
Hackathon ends<br />12.30 PM – Final Presentation<br />03.30 PM –
Valedictory<br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>EVALUATION CRITERIA:</strong><br /><br /><strong
>First Review:</strong
><br />- Teams are expected to explain their problem statement and
the workflow of their solution.<br />- In this round, teams will
be evaluated based on the novelty of their problem statement and
the clarity in their approach.<br /><br /><strong
>Second Review:</strong
><br />- This review is a checkpoint to track the team’s
progress. <br />- The reviewers will give their input and
their thoughts on the team’s solution and changes if there are
any. <br /><br /><strong>Third Review:</strong><br />- Teams
are expected to implement the changes given in the previous review
by the reviewers.<br />- In this round, the teams are reviewed
based on their progress in accordance with their proposed workflow
and closeness to completion of the project.<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>Final Presentation:</strong><br />- In this round,
teams will be evaluated based on presentation, ability to explain
their idea and innovation in their solution.<br />- Teams which
address the marketability of their product will be awarded
additional points. <br />- The hackathon will follow a leader
board system. The points awarded will be the cumulative points,
gained by the team over the three reviews and final presentation.
The top team will be announced as the winner of the hackathon.<br /><br /><strong
><span style="text-decoration: underline"
>Decision taken by the review panel will be final.</span
></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
>Raj Vignesh K:</strong
>
8939635828<br /><strong>Poojah G:</strong> 9840685554<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-2"
style="margin-top: 150px"
>
<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)"
>
Workshop on E-Vehicles
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A Unique workshop by the Department of Electrical and Electronics
Engineering<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
> Any department <br /><strong>Platform:</strong
> TBD<br /><strong>Date/Time: </strong>TBD<br /><strong
>Registration Fees:</strong
>
TBD
</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>Description:</strong><br />Its almost 2021! And yes
we are trying to adapt ourselves to the new normal. And the future
for<br />automobile is electric vehicle, a revolution in the
automobile sector.<br />With the raising demand for research and
development on the field of EV’s it has a great impact in<br />the
forthcoming generations. Now, from your home at the new normal, is
it possible to know about<br />things related to EV’s. Yes it is.
SSN College Of Engineering, Department of EEE presents workshop<br />on
Electric Vehicle and Battery Management System!! to enlighten your
minds with flourishing<br />knowledge for EV.<br />Are you a
person who wants to know about the insights of electric vehicles
and battery management<br />system. Here is a opportunity to learn
and explore the insights of those and have your doubts<br />clarified
regarding the same!<br />Grab your seats, as this is one
opportunity where you can directly come across the Giants in
person<br />from the comfort of your home.<br />Get ready to learn
and explore stuffs related to E-Vechicles from the comfort of your
home!<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>Shriraam V:</strong>
7358751923<br /><strong>Santhoosh Aravind S:</strong>
9952046679<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>