-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
997 lines (892 loc) · 48.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ICEFOSS-2019</title>
<link rel="stylesheet" href="css/bulma.min.css">
<link rel="stylesheet" href="css/bulma-timeline.min.css">
<link rel="stylesheet" href="css/bulma-divider.min.css">
<link rel="stylesheet" href="css/main.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<style>
#map {
height: 400px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
</head>
<body>
<nav class="navbar landing-page is-fixed-top" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item has-text-white" href="#home">ICEFOSS<span class="has-text-weight-semibold">2019</span></a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-start brackets">
<a class="navbar-item has-text-white has-text-centered" href="#about"><p>About</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#person"><p>Speakers</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#workshop"><p>Workshops</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#WomenHackathon"><p>Women Hackathon</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#register"><p>Register</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#faq"><p>F.A.Q</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#workshop_schedule">Workshop Schedule</a>
<a class="navbar-item has-text-white has-text-centered" href="#venue"><p>Venue</p></a>
<a class="navbar-item has-text-white has-text-centered" href="#contact"><p>Contact Us</p></a>
</div>
</div>
</div>
</nav>
<section id="home" class="hero landing-page has-text-centered is-family-monospace">
<div class="container hero-body">
<h1 class="title has-text-white is-size-1" style="padding-top:3rem;">
ICEFOSS 2019
</h1>
<p class="is-size-4 has-text-white" style="padding-top:3rem">
ICEFOSS is a Free Software Conference organized by FISAT Free Software Cell (FFSC) aiming all FOSS enthusiasts and others. ICEFOSS'19, scheduled on the 19<sup>th</sup> and 20<sup>th</sup> of February 2019 is the seventh edition of this conference.
</p>
<p style="padding-top:5rem;">
<a class="button is-large is-rounded button-register" style="margin-right:1rem;" href="#register">Register now</a>
</p>
</div>
</section>
<section id="about">
<div class="container">
<div class="columns" style="padding-bottom:3rem;padding-top:3rem;">
<div class="column">
<p class="has-text-centered is-size-3" style="padding-top:3rem;color: #606ae7;">About ICEFOSS</p>
<p class="is-size-4 has-text-centered" style="padding-top:3rem;padding-bottom: 3rem;"> ICEFOSS is a Free Software Conference organized by FISAT Free
Software Cell (FFSC). ICEFOSS 2019, scheduled on February 19,20 2019
includes Workshops covering different aspects of Free Software. ICEFOSS
2019 is the seventh edition of this conference.
To know about the past conferences <a href="http://icefoss.fisat.ac.in/2017/index.html">click here.</a> </p>
</div>
<div class="column">
<p class="bd-notification is-primary has-text-centered is-size-3" style="padding-top:3rem;color: #606ae7;">About FISAT</p>
<p class="is-size-4 has-text-centered" style="padding-top:3rem;padding-bottom: 3rem;"><a href="http://www.fisat.ac.in/">Federal Institute of Science And Technology (FISAT)</a>
was established in 2002 under the aegis of Federal Bank Officers'
Association Educational Society (FBOAES). The college has carved a niche for
itself in education world, eloquently demonstrated by the flying colors
attained by its students in academics, placements as well as in extra
curricular and co-curricular activities.</p>
</div>
</div>
</div>
</section>
<section id="person" style="background:#ecf0fa;" >
<!-- style="background: linear-gradient(270deg,#ecf0fa,#fff);">-->
<div class="container" style="padding-top:3rem;">
<div class="title has-text-centered" style="color:#606ae7; padding-bottom:1rem; ">Speakers</div>
<div class="columns">
<div class="column is-one-fifth">
</div>
<div class="column is-one-fifth ">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/Naufal-Go.jpeg" alt="Naful Ibrahim">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Naufal Ibrahim
<a href="https://www.linkedin.com/in/noufalibrahim/">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg" ></i>
</a>
</p>
<p class="subtitle is-6">Free Software Consultant and Trainer</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/Haridas-Hadoop.jpeg" alt="Haridas N">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Haridas N
<a href="https://www.linkedin.com/in/haridasn/">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg" ></i>
</a>
</p>
<p class="subtitle is-6">Principal Engineer at Imaginea Technologies Inc.</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/Johny-DockerKubernetes.jpeg" alt="Johny James">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Johny James
<a href="https://www.linkedin.com/in/johnyjames/">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg" ></i>
</a>
</p>
<p class="subtitle is-6">Senior Software Engineer at Myntra</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column is-one-fifth">
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/Midhun-DockerKubernetes.jpeg" alt="Midhun K">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Midhun K
<a href="https://www.linkedin.com/in/midhun-kandoth-434a7075/">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg" ></i>
<!-- <img src="images/icons/linkedin.png" style="float: right">-->
</a>
</p>
<p class="subtitle is-6">Senior Software Engineer at United Layer</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-2by2">
<img src="images/Speakers/pankaj.jpg" alt="Pankaj Kumar">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Pankaj Kumar
<a href="https://www.linkedin.com/in/pankaj-kumar-g-1aa9b885/">
<i style="float:right;color:#000;" class="fas fa-university fa-lg"></i><!--<img src="images/icons/linkedin.png" style="float: right">-->
</a>
</p>
<p class="subtitle is-6">Assistant Professor, <br>FISAT</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-fifth ">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/adam.jpg" alt="Adam Shamsudeen ">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Adam Shamsudeen
<a href="https://www.linkedin.com/in/adamshamsudeen/">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg" ></i>
</a>
</p>
<p class="subtitle is-6">Research Engineer at Saama</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column is-one-fifth">
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/sreeraj.jpg" alt="Dr.Sreeraj M">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Dr.Sreeraj M
<a href="http://fisat.ac.in/staff-profile.php?fid=114">
<i style="float:right;color:#000;" class="fas fa-university fa-lg"></i>
</a>
</p>
<p class="subtitle is-6">Assistant Professor,FISAT</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="https://bulma.io/images/placeholders/256x256.png" alt="Sandhini S">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">SANDHINI S
<a href="https://www.linkedin.com/in/sandhini-s-a7499870/?originalSubdomain=in">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg"></i>
</a>
</p>
<p class="subtitle is-6">Fellow,ICFOSS</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-fifth">
<div class="card">
<div class="card-image">
<figure class="image is-3by3">
<img src="images/Speakers/keerthana.jpg" alt="Keerthana Ashok">
</figure>
</div>
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-4">Keerthana Ashok
<a href="https://www.linkedin.com/in/keerthana-ashok03/?originalSubdomain=in">
<i style="float:right;color:#000;" class="fab fa-linkedin fa-lg"></i>
</a>
</p>
<p class="subtitle is-6">Fellow,ICFOSS</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="workshop" class="is-large" style="background-color:#4f72e6;">
<div class="title has-text-centered has-text-white" style="padding-top:3rem;padding-bottom:1rem; ">Workshop</div>
<div class="timeline is-centered" style="padding:2rem;">
<div class="timeline-item is-warning">
<div class="timeline-marker is-warning is-image is-32x32">
<img src="images/circle_yellow.png">
</div>
<div class="timeline-content">
<a class=" heading is-size-5 title glow has-text-white modal-button" data-target="#hackthon_modal">FOSS Women Hackathon<i class="fas fa-angle-right "></i></a>
<p class="heading has-text-white is-size-9 subtitle">19 and 20 Feb 2019</p>
</div>
</div>
<div class="timeline-item is-warning">
<div class="timeline-marker is-warning is-image is-32x32">
<img src="images/circle_yellow.png">
</div>
<div class="timeline-content">
<a class=" heading is-size-5 title glow has-text-white modal-button" data-target="#go_modal">Go Programming<i class="fas fa-angle-right "></i></a>
<p class="heading has-text-white is-size-9 subtitle">19 Feb 2019</p>
<p class="heading has-text-white is-size-9 subtitle">10:30am - 04:15pm</p>
</div>
</div>
<div class="timeline-item is-warning">
<div class="timeline-marker is-warning is-image is-32x32">
<img src="images/circle_yellow.png">
</div>
<div class="timeline-content">
<a class=" heading is-size-5 title glow has-text-white modal-button" data-target="#hadoop_modal">Introduction to Big Data and Hadoop<i class="fas fa-angle-right "></i></a>
<p class="heading has-text-white is-size-9 subtitle">19 Feb 2019</p>
<p class="heading has-text-white is-size-9 subtitle">09:15am - 04:15pm</p>
</div>
</div>
<div class="timeline-item is-warning">
<div class="timeline-marker is-warning is-image is-32x32">
<img src="images/circle_yellow.png">
</div>
<div class="timeline-content">
<a class=" heading is-size-5 title glow has-text-white modal-button" data-target="#docker_modal">Introduction to Docker and Kubernetes<i class="fas fa-angle-right "></i></a>
<p class="heading has-text-white is-size-9 subtitle">20 Feb 2019</p>
<p class="heading has-text-white is-size-9 subtitle">09:15am - 04:15pm</p>
</div>
</div>
<div class="timeline-item is-warning">
<div class="timeline-marker is-warning is-image is-32x32">
<img src="images/circle_yellow.png">
</div>
<div class="timeline-content">
<a class=" heading is-size-5 title glow has-text-white modal-button" data-target="#spark_modal">Introduction to Machine Learning using Apache Spark<i class="fas fa-angle-right "></i></a>
<p class="heading has-text-white is-size-9 subtitle">20 Feb 2019</p>
<p class="heading has-text-white is-size-9 subtitle">09:15am - 04:15pm</p>
</div>
</div>
</div>
</section>
<section id="WomenHackathon" style="background-color:#ecf0fa;">
<div class="container">
<div class="title has-text-centered" style="padding-top:3rem;padding-bottom:1.5rem; ">Women Hackathon</div>
<div class="columns is-centered">
<div class="column is-three-quartes">
<p class="subtitle is-4 has-text-centered">ICEFOSS 2019, scheduled on February 19 and 20, brings to you ‘Women Hackathon’, conducted in association with ICFOSS. It is a hackathon exclusively for women which aims to connect and inspire women, and be a stepping stone in furthering education and technological career. Women hackathon provides both an opportunity to create space that will make women leaders of technology.</p>
<ul>
<li class="subtitle is-4 has-text-centered">During DAY 1 of the Event, participants will be taught the best industrial practices and will be given a detailed introduction into various domains by leading industry experts.</li>
<li class="subtitle is-4 has-text-centered" style="padding-bottom:3rem">On the 2nd Day, participants have a chance to showcase their creativity and skillset by brainstorming their ideas and making a prototype with what have they have been taught the previous day.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Modals for the Events-->
<div id="hackthon_modal" class = "modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Women Hackathon</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div class="content">
<h2>Abstract</h2>
<p>ICEFOSS 2019, scheduled on February 19 and 20, brings to you ‘Women Hackathon’, conducted in association with ICFOSS. It is a hackathon exclusively for women which aims to connect and inspire women, and be a stepping stone in furthering education and technological career. Women hackathon provides both an opportunity to create space that will make women leaders of technology and an attempt to solve social problems which can improve the lives of women around the world.</p>
<p>During DAY 1 of the Event, participants will be taught the best industrial practices and will be given a detailed introduction into various domains by leading industry experts.</p>
<p>On the 2nd Day, participants have a chance to showcase their creativity and skillset by brainstorming their ideas and making a prototype with what have they have been taught the previous day.</p>
<h2>Resource Person</h2>
<ul>
<li>Dr.Sreeraj M</li>
<li>Adam Shamsudeen</li>
<li>Sandhini S</li>
<li>Keerthana Ashok</li>
</ul>
<h2>Venue</h2>
<ul>
<li>19-02-2019 : M-Tech Lab (North Block)</li>
<li>20-02-2019 : Central Computing Facility L5</li>
</ul>
</div>
</section>
</div>
</div>
<div id="docker_modal" class = "modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Introduction to Docker and Kubernetes</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div class="content">
<h2>Abstract</h2>
<p>This session will introduce you to the basics of Docker and Kubernetes. Widely used in industry Docker, provides virtualizination capabilities. Docker is used to run software packages called "containers". Originally designed by Google, Kuberenetes is widely used in industry for automating application deployment.</p>
<h2>Prerequisite</h2>
<p>Basic GNU/Linux commands</p>
<h2>Resource Person</h2>
<ul>
<li>Midhun Kandoth</li>
<li>Johny James</li>
</ul>
<h2>Venue</h2>
<p>Central Computing Facility - L4</p>
</div>
</section>
</div>
</div>
<div id="hadoop_modal" class = "modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Introduction to Big Data and Hadoop</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div class="content">
<h2>Abstract</h2>
<p>This session will introduce you well into the general concept of how the scalable systems work, and
covers its architecture, programming models and mainly the thinking process. After giving this base idea of scalable processing, we will see how the Hadoop platform implements these ideas into real. There will be a hands on for setting up Hadoop cluster and playing on it with different work loads, so come prepared :).</p>
<h2>Prerequisite</h2>
<p>Basic GNU/Linux commands</p>
<h2>Resource Person</h2>
<p>Haridas N</p>
<h2>Venue</h2>
<p>Central Computing Facility - L4</p>
</div>
</section>
</div>
</div>
<div id="go_modal" class = "modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Go Programming</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div class="content">
<h2>Abstract</h2>
<p>This session will introduce you to Go programming language. Go is a compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson.</p>
<h2>Prerequisite</h2>
<p>Basic GNU/Linux commands</p>
<h2>Resource Person</h2>
<p>Naufal Ibrahim</p>
<h2>Venue</h2>
<p>Central Computhing Facility - L5</p>
</div>
</section>
</div>
</div>
<div id="spark_modal" class = "modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Introduction to Machine Learning using Apache Spark</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div class="content">
<h2>Abstract</h2>
<p>This session will introduce you into the basics of Machine Learning. Apache Spark is used for this purpose. Apache Spark is a general-purpose cluster-computing framework used for big data processing.</p>
<h2>Prerequisite</h2>
<p>Basic GNU/Linux commands</p>
<h2>Resource Person</h2>
<p>Pankaj Kumar G</p>
<h2>Venue</h2>
<p>Central Computing Facility - L9</p>
</div>
</section>
</div>
</div>
<section id="register">
<div class="container">
<p class="bd-notification title is-primary has-text-centered is-size-3" style="padding-top:3rem;color: #606ae7;margin-bottom: 2rem;">Register</p>
<p class="has-text-centered is-size-5" style="margin-bottom:1rem;"> Registration fee for the event is Rs 350(for non-fisatians) for two days. The fee for women hackthon is Rs.100.
There will be no spot registration for non-fisatians.This includes workshop materials, lunch and tea. </p>
<div class="notification is-info has-text-centered is-size-5">
<strong>Note:</strong>
Registration has been closed.
</div>
<div class="columns is-vcentered" style="margin-top:1rem;">
<div class="column">
<p class="has-text-centered is-size-5">Pay using our UPI ID<br>
<button class="button is-info" style="margin-top: 1rem;margin-bottom: 1rem">UPI ID@bank</button>
</div>
<div class="is-divider-vertical" data-content="OR"></div>
<div class="column has-text-centered">
<img style="align-items: center;" src="images/QRCode.png" width="150" height="150">
</div>
<div class="is-divider-vertical" data-content="OR"></div>
<div class="column has-text-centered">
<p class="has-text-centered is-size-5"> Debit/Credit card</p><p class="is-size-7">(Payment Gateway charges extra)</p>
<a class="button is-large is-rounded button-gradient is-link has-text-centered" class="is-center" style="margin-top: 1rem;margin-bottom: 1rem" href="#" disabled>Pay Now</a><br><br><br>
</div>
</div>
<p class="has-text-centered is-size-5">After payment, click on the Register button to register by giving details including payment information
<br>
<a class="button is-large is-rounded button-gradient" style="margin-top: 1rem;margin-top:1.5rem;margin-bottom: 3rem;color:#000;" href="#" disabled>Register</a><br>
</p>
</div>
</section>
<section id="faq" style="padding-bottom: 3rem;background-color: #4f72e6;" class="has-text-centred">
<div class="container">
<p class="bd-notification is-primary has-text-centered is-size-3 has-text-white" style="padding-top:3rem;padding-bottom:1rem;color: #606ae7;">F.A.Q</p>
<table class="table is-fullwidth is-striped has-text-white">
<tbody class="has-text-centred">
<tr>
<td style="background-color:#4f72e6;padding-bottom: 0rem;color:#a3cef1;"><span class="q-style has-text-weight-light">Q. </span> <span class="has-text-weight-bold"> How much will it cost me to participate in The Women hackathon? </span></td>
</tr>
<tr>
<td style="background-color:#4f72e6;padding-top: 0rem;border-top-style: 0rem;color:#a3cef1;">
<span class="a-style has-text-weight-light">A. </span>For Women Hackathon the registration fee is ₹100 only(P.S: You do NOT have to pay the other Rs 350 for this event). Food and refreshments will also be provided.</td>
</tr>
</tbody>
</table>
<table class="table is-fullwidth is-striped has-text-white">
<tbody class="has-text-centred">
<tr>
<td style="background-color:#4f72e6;padding-bottom: 0rem;color:#a3cef1;"><span class="q-style has-text-weight-light">Q. </span> <span class="has-text-weight-bold">Will Accommodation be provided for the participants?</span></td>
</tr>
<tr>
<td style="background-color:#4f72e6;padding-top: 0rem;border-top-style: 0rem;color:#a3cef1;">
<span class="a-style has-text-weight-light">A. </span> Accommodation will be provided but participants will have to pay a nominal fee of ₹100 for it.</td>
</tr>
</tbody>
</table>
<table class="table is-fullwidth is-striped has-text-white">
<tbody class="has-text-centred">
<tr>
<td class="td-style"><span class=" q-style has-text-weight-light">Q. </span><span class="has-text-weight-bold"> Can we take part in the Women Hackathon as a team?</span></td>
</tr>
<tr>
<td class="td-style">
<span class="a-style has-text-weight-light">A. </span> On the 2nd Day of the event you can take part in the activities either as a team or individually.</td>
</tr>
</tbody>
</table>
<table class="table is-fullwidth is-striped has-text-white">
<tbody class="has-text-centred">
<tr>
<td class="td-style"><span class="q-style has-text-weight-light">Q. </span> <span class="has-text-weight-bold"> Will I have to pay ₹350 ,if I attend just one day of the programme?</span></td>
</tr>
<tr>
<td class="td-style">
<span class="a-style has-text-weight-light">A. </span> Yes, you will have to pay ₹350 even if you attend the event for only 1 day.</td>
</tr>
</tbody>
</table>
<table class="table is-fullwidth is-striped has-text-white">
<tbody class="has-text-centred">
<tr>
<td class="td-style">
<span class=" q-style has-text-weight-light">Q. </span>
<span class=" has-text-weight-bold"> How do I reach Fisat via Bus/Train? </span>
</td>
</tr>
<tr>
<td class="td-style">
<span class="a-style has-text-weight-light">A. </span>
<span> You can either take the bus or train to arrive at Angamaly. From there are multiple possibilities :
<div class="content">
<ul>
<li>Take an auto-rikshaw that will take you to FISAT for about ₹150-180. </li>
<li>Take a private bus that goes directly to FISAT. </li>
<li>Take a private bus to Mookkannoor and : </li>
<ul>
<li> Walk for 15 minutes to FISAT. </li>
<li> Take an auto-rikshaw from Mookkannoor to FISAT for about ₹50. </li>
</ul>
</ul>
</div>
</span>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="workshop_schedule" style="background:#ecf0fa; padding-bottom: 3rem;">
<div class="container">
<div class="title has-text-centered" style="color:#606ae7; padding-bottom:1rem; padding-top: 3rem;">Workshop Schedule</div>
<div class="card is-fullwidth">
<header class="card-header">
<p class="card-header-title">Day 1 - 19<sup>th</sup> February 2019</p>
<a class="card-header-icon card-toggle">
<i class="fa fa-angle-down"></i>
</a>
</header>
<div class="card-content">
<div class="content">
<div class="tile is-ancestor is-vertical">
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">09:30am - 10:15am</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Introduction to Big Data and Hadoop Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">10:15am - 11:00am</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Big Data and Hadoop Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Go Programming Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">11:00am - 11:15am</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Tea Break</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">11:15am - 01:15pm</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Big Data and Hadoop Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Go Programming Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">01:15pm - 01:45pm</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Lunch Break</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">01:45pm - 03:00pm</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Big Data and Hadoop Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Go Programming Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">03:00pm - 03:15pm</p>
</div>
<div class="tile is-child box is-6">
<p class="subtitle has-text-centered">Tea Break for Introduction to Big Data and Hadoop Workshop and Go Programming Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">03:15pm - 04:15pm</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Big Data and Hadoop Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Go Programming Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">04:15pm - 04:30pm</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Tea Break for Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">04:30pm - 06:00pm</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card is-fullwidth">
<header class="card-header">
<p class="card-header-title">Day 2 - 20<sup>th</sup> February 2019</p>
<a class="card-header-icon card-toggle">
<i class="fa fa-angle-down"></i>
</a>
</header>
<div class="card-content is-hidden">
<div class="content">
<div class="tile is-ancestor is-vertical">
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">09:30am - 10:00am</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Docker and Kubernetes Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Machine Leraning using Apache Spark Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">10:00am - 11:30am</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Introduction to Docker and Kubernetes Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Introduction to Machine Leraning using Apache Spark Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
<div class="title is-child box">
<p class="subtitle has-text-centered">Inauguration</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">11:30am - 11:45am</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Tea Break</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">11:45am - 01:15pm</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Docker and Kuberenetes Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Machine Leraning using Apache Spark Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">01:15pm - 01:45pm</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Lunch Break</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">01:45pm - 03:00pm</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Docker and Kuberenetes Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Machine Leraning using Apache Spark Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">03:00pm - 03:15pm</p>
</div>
<div class="tile is-child box is-6">
<p class="subtitle has-text-centered">Tea Break for Introduction to Docker and Kuberenetes Workshop and Introduction to Machine Leraning using Apache Spark Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">03:15pm - 04:15pm</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Docker and Kuberenetes Workshop</p>
</div>
<div class="tile is-child box is-3">
<p class="subtitle has-text-centered">Introduction to Machine Leraning using Apache Spark Workshop</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">04:15pm - 04:30pm</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Tea Break for Women Hackathon Workshop</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box has-background-grey-lighter is-3">
<p class="subtitle has-text-centered">04:30pm - 06:00pm</p>
</div>
<div class="tile is-child box">
<p class="subtitle has-text-centered">Women Hackathon Workshop</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="venue">
<div class="container">
<div class="title has-text-centered" style="color:#606ae7; padding-top: 4rem;">Venue</div>
<div class="columns is-vcentered">
<div class="column is-half" style="padding-top:3rem;">
<!--<p class="has-text-centered is-size-3" style="padding-top:3rem;color: #606ae7;">Venue</p>-->
<p class="is-size-4 has-text-centered" style="padding-top:1rem;">
Federal Institute of Science and Technology<br>
Hormis Nagar, Mookkannoor<br>
Angamaly, Kerala-683577
</p>
<p class="is-size-4 has-text-centered" style="padding-bottom: 3rem;">
<a href="http://fisat.ac.in/pages/conveyance-facilities">Click here for conveyance details.</a>
</p>
</div>
<div class="column is-half" style="padding-top:3rem;">
<div id="map"></div>
</div>
</div>
</div>
</section>
<section id="contact" style="padding-bottom: 3rem;background:#ecf0fa;">
<p class="bd-notification is-primary has-text-centered is-size-3" style="padding-top:3rem;color: #606ae7;">Contact</p>
<p class="has-text-centered" style="padding-bottom:1rem;padding-top: 1rem;"><i class="far fa-envelope"></i> [email protected]</p>
<p class="has-text-centered" style="padding-bottom:1rem;"><i class="far fa-user"></i> Yedhin K : <i class="fas fa-mobile-alt"></i> 9497656739</p>
<p class="has-text-centered" style="padding-bottom:1rem;"><i class="far fa-user"></i> Judith George : <i class="fas fa-mobile-alt"></i> 8281783351</p>
<p class="has-text-centered" style="padding-bottom:1rem;"><i class="far fa-user"></i> Nandini Menon : <i class="fas fa-mobile-alt"></i> 9497461138</p>
</section>
<footer class="footer" style="background-color:#4f72e6;">
<div class="content has-text-centered has-text-white">
<p>Made with <strong><a href="https://bulma.io" class="has-text-grey-lighter">Bulma</a></strong>.<br>
Designed and Created by <strong><a href="https://www.linkedin.com/in/nandinimenon/" class="has-text-grey-lighter">Nandini Menon</a></strong> and <strong><a href="https://www.linkedin.com/in/mohit-rajan-e-756412160/" class="has-text-grey-lighter">Mohit Rajan E</a></strong>.
</p>
</div>
</footer>
<script>
function initMap() {
var fisat = {lat: 10.232954, lng: 76.408754};
var map = new google.maps.Map(
document.getElementById('map'), {zoom: 16, center: fisat});
var marker = new google.maps.Marker({position: fisat, map: map});
}
</script>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/navbar.js"></script>
<script src="js/smooth_scroll.js"></script>
<script src="js/modal.js"></script>
<script src="js/expand-card.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBuuU1CLP8qBFCrkXJU6fNRftZyqs7jeAI&callback=initMap">
</script>
</body>
</html>