generated from CodeChefVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
934 lines (767 loc) · 48.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags For SEO -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description"content="Official website for our Tech Talks graVITas event for the year 2020.">
<meta name="keywords" content="Tech Talks,Tech,Talks,CodeChef-VIT,Vellore">
<meta name="author" content="Yasharth Tripathi">
<meta name="copyright" content="">
<meta name="language" content="en">
<meta name="url" content="https://">
<meta name="category" content="">
<meta name="coverage" content="Worldwide">
<meta name="rating" content="General">
<meta name="og:phone_number" content="+91">
<meta name="og:country-name" content="India">
<meta name="og:region" content="Delhi, Chennai, Mumbai, Vellore, Kolkatta, Bangalore, Gurgaon,Pune">
<meta name="og:site_name" content="Tech-Talks">
<meta property="og:type" content="website">
<meta property="og:title" content="Tech-Talks">
<meta property="og:description" content="Official website for our Tech Talks graVITas event for the year 2020." />
<meta property="og:image" content="" />
<meta name="twitter:card" content="website">
<meta name="twitter:site" content="Tech-Talks">
<meta name="twitter:title" content="Tech-Talks">
<meta name="twitter:description" content="Official website for our Tech Talks graVITas event for the year 2020.">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/manifest.json">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Tech-Talks</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/bootstrap-4.1.2/bootstrap.min.css">
<link href="plugins/font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="plugins/colorbox/colorbox.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="styles/main_styles.css">
<link rel="stylesheet" type="text/css" href="styles/responsive.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="odometer-theme-car.css" />
<script src="odometer.js"></script>
</head>
<body>
<!-- Header -->
<header class="header">
<div class="header_content d-flex flex-row align-items-center justify-content-start">
<a class="header_content" href="https://codechefvit.com/"><img src="images/CC logo.png"
alt="CodeChef-VIT" style="padding-bottom:5px;margin-top:0px;width: 130px;height: 50px;" class="img-fluid logo mt-3"></a>
<!-- Main Navigation -->
<nav class="main_nav ml-auto ">
<ul class="d-flex flex-row align-items-center justify-content-start">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#timeline">Eventflow</a></li>
<li><a href="#registration">Registration</a></li>
<li><a href="#Footer" style="margin-right: 20px">Contact</a></li>
</ul>
</nav>
<div class="header_right ml-auto d-flex flex-row align-items-center justify-content-start">
<div class="hamburger"><i class="fa fa-bars" aria-hidden="true"></i></div>
</div>
</div>
</header>
<!-- Menu -->
<div class="menu">
<div class="menu_container">
<div class="menu_close"><i class="fa fa-times" aria-hidden="true"></i></div>
<div class="menu_content d-flex flex-column align-items-center justify-content-start">
<nav class="menu_nav">
<ul class="d-flex flex-column align-items-center justify-content-start">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#timeline">Eventflow</a></li>
<li><a href="#registration">Registration</a></li>
<li><a href="#Footer">Contact</a></li>
</ul>
</nav>
</div>
<div class="menu_social">
<div class="social">
<ul class="d-flex flex-row align-items-center justify-content-start">
<li><a href="https://www.facebook.com/codechefvit"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://medium.com/codechef-vit"><i class="fa fa-medium" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/CodeChefVIT"><i class="fa fa-github" aria-hidden="true"></i></a></li>
<li><a href="https://www.twitter.com/codechefvit"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/codechefvit"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCzFltCrQSB1CKmX440yqTKw"><i class="fa fa-youtube" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/company/codechef-vit-chapter"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Home -->
<div class="home">
<!-- Home Slider -->
<div class="home_slider_container">
<!-- Slide -->
<div class="slide">
<div class="background_image"></div>
<div class="home_container">
<div class="container">
<div class="row">
<div class="col">
<div class="home_content">
<div class="home_title">
<h1>
<span>TECH-TALKS</span>
<span>2020</span>
</h1>
</div>
<div class="home_info_container text-center" >
<div class="home_info">
<ul class="d-flex flex-row align-items-center justify-content-start">
<li>2nd October 2020</li>
</ul>
</div>
</div>
<div class="home_info_container mt-2 text-center">
<div class="home_info">
<ul class="d-flex flex-row align-items-center justify-content-start">
<li>Time - (14:00-18:00)</li>
</ul>
</div>
</div>
<div class="button button_1 home_button align-items-center" style="margin-right: 41%;margin-left: 41%;"><a href="http://info.vit.ac.in/gravitas2020/gravitas_login.asp"><span>Register Now</span></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- -->
<section class="ts-block ts-opacity__90 data-bg-image">
<div class="container ts-promo-numbers">
<div class="row">
<div class="col-sm-6 col-md-3">
<div class="ts-promo-number text-center">
<figure class="odometer" data-odometer-final="7" style="color: white;">12+</figure>
<h5 style="color: white;">SPEAKERS</h5>
</div>
<!--end ts-promo-number-->
</div>
<!--end col-md-3-->
<div class="col-sm-6 col-md-3">
<div class="ts-promo-number text-center">
<figure class="odometer" data-odometer-final="33" style="color: white;">4</figure>
<h5 style="color: white;">DOMAINS</h5>
</div>
<!--end ts-promo-number-->
</div>
<!--end col-md-3-->
<div class="col-sm-6 col-md-3">
<div class="ts-promo-number text-center">
<figure class="odometer" data-odometer-final="7" style="color: white;">250+</figure>
<h5 style="color: white;">ATTENDEES</h5>
</div>
<!--end ts-promo-number-->
</div>
<!--end col-md-3-->
<div class="col-sm-6 col-md-3">
<div class="ts-promo-number text-center">
<figure class="odometer" data-odometer-final="3" style="color: white;">4</figure>
<h5 style="color: white;">HOURS</h5>
</div>
<!--end ts-promo-number-->
</div>
<!--end col-md-3-->
</div>
</div>
</section>
<!--end ts-block-->
<!-- Intro -->
<section id="about" style="background-color: whitesmoke;">
<div class="intro">
<div class="container">
<div class="row">
<div class="col text-center">
<div class="section_title_container text-center">
<div class="section_title"data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>ABOUT THE EVENT</h1></div>
</div>
<div class="intro_text text-center" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">
<p>A first of it's kind virtual technical round table discussion, an event that will bring in some of the best in the world of tech. We will interview the leading figures in the industry and share their stories, struggles and insights. If you are interested in being at the forefront of technical trends , professional developments and emerging technologies, this Tech Talk is for you. Unlike any regular guest session, this will be an interactive and intuitive session focussing on imparting practical skills from all the latest tech domains to its attendees.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Video -->
<div class="section_title_container text-center">
<div class="container">
<div class="section_title" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true" style="">
<iframe width="100%" src="https://www.youtube.com/embed/juAJVDEOd3M" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="courseY"></iframe>
</div>
</div>
</div>
</section>
<!-- Tabs Section -->
<div class="tabs_section">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title_container text-center">
<div class="section_subtitle" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">See what's all about</div>
<div class="section_title" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>THE TOPICS</h1></div>
</div>
<div class="tabs_container">
<div class="tabs d-flex flex-row align-items-center justify-content-start flex-wrap">
<div class="tab active" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true" style="border: 1px solid black;">01. Blockchain</div>
<div class="tab" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true" style="border: 1px solid black;">02. Programming</div>
<div class="tab" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true" style="border: 1px solid black;">03. Artificial Intelligence</div>
<div class="tab" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true" style="border: 1px solid black;">04. Design</div>
</div>
<div class="tab_panels">
<div class="tab_panel active">
<div class="row">
<div class="col">
<div class="tab_panel_content">
<div class="tab_title" data-aos="fade-right" data-aos-duration="1000" data-aos-once="true"><h3>01. Blockchain</h3></div>
<div class="tab_text">
<p data-aos="fade-right" data-aos-duration="1000" data-aos-once="true">Blockchain, as heavy as the word sounds are just a system of impenetrable recording of information. We often hear about Bitcoin, its values, the way it is untraceable, and its growing demand but have you ever wondered why is it so popular and its application? Don't worry ,We have got you covered as Tech Talks 2020 brings to you an open interactive forum focusing on every aspect of Blockchain with its real-life application so that you can make use of it to make a name for yourself in the ever-growing Tech World.</p>
</div>
</div>
</div>
</div>
<section id="speak">
<div class="speakers">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title_container text-center">
<div class="section_subtitle" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">see what's all about</div>
<div class="section_title" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>WHO’S SPEAKING</h1></div>
</div>
</div>
</div>
<!-- Speaker -->
<!-- ======= Guests Section ======= -->
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">Navin Reddy</h3>
<p class="lead" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">The great Tech Educator whose objective in life always has been to parse a student into a professional.He is a marvellous TedEx speaker and an expert in Blockchain and with his expertise the attendies will gain an incredible insight into the blockchain technolgies along with having an actual practical knowledge .
He has even worked as a Corporate Trainer and to impart his knowledge he has a very Successful Youtube channel under the name Telusko which has over 1M + subscribers.</p>
</div>
<div class="col-md-5 order-md-1 blockchain" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">
<img class="img-fluid" src="images/guests/blockchain/navinr.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay" style="width: 94%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/navinreddy20" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/navinreddyofficial" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h3 class="featurette-heading">Muskan Kalra</h3>
<p class="lead">She is the co-author of a research paper entitled - A study on applications of blockchain in healthcare which has been published in Springer. She was a part of the Student Startup Exposure Program, a team of delegates that visited Silicon Valley to understand the global startup ecosystem and implement the same in India. She co-founded 'Blockchain at India', a community formed by blockchain enthusiasts who aim to inspire university undergraduates from every nook and corner of the country to try their hands out at blockchain by providing the necessary motivation, drive and resources.</p>
</div>
<div class="col-md-5 order-md-2 design">
<img class="img-fluid" src="images/guests/blockchain/muskan.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 87%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/muskan-kalra-679327159/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://twitter.com/muskan_kalra24?lang=en" class="icon" title="User Profile"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Devashish Bhuyan</h3>
<p class="lead">The diligent Marketing Consultant for OKEx, a leading crypto exchange, and the prolific Cryptocurrency Journalist at Blockchain news who is also an amazing marketer with 12k+ followers on Facebook. His works are so worth reading that they have gained 3 M + Readership and have been a Journalist for 60+ Crypto News Articles. He also has been a market Researcher for the
Business Research Company. His experiences and anecdotes will surely inspire young minds and help them to have a boost start in their career.</p>
</div>
<div class="col-md-5 order-md-1 design">
<img class="img-fluid" src="images/guests/blockchain/devashish.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 94%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/devashishbhuyan/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="http://facebook.com/devashish.bhuyan" class="icon" title="User Profile"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="tab_panel">
<div class="row">
<div class="col">
<div class="tab_panel_content">
<div class="tab_title" data-aos="fade-right" data-aos-duration="1000" data-aos-once="true"><h3>02. Programming</h3></div>
<div class="tab_text">
<p data-aos="fade-right" data-aos-duration="1000" data-aos-once="true">The need for Data structures in programming never fails to amaze one. If you want to progress in the sphere coding then Data structures are a must. Here at Tech Talks 2020, we understand this and hence we bring to you a special segment on Programming which will give you a headstart in coding and boost your skills by a significant amount for it will be presided by one of the greatest and biggest names of the industry who will prove to be the best guide one could ever have.</p>
</div>
</div>
</div>
</div>
<section id="speak">
<div class="speakers">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title_container text-center">
<div class="section_subtitle" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">see what's all about</div>
<div class="section_title" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>WHO’S SPEAKING</h1></div>
</div>
</div>
</div>
<!-- Speaker -->
<!-- ======= Guests Section ======= -->
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Yashavant Kanetkar</h3>
<p class="lead">The proud Alumni of IIT Kanpur who is the author of many famous books which need no introduction like Let Us C,Let Us C++ and many more which has time and again helped students in their career and will never phase out.The interaction with him will help us explore the modern day's programming practices and the way one should progress in their career .He is also a Founder of the great KICIT pvt ltd which is a market leader in Content Development,Content Delivery and IT Education.</p>
</div>
<div class="col-md-5 order-md-1 coding">
<img class="img-fluid" src="images/guests/coding/yashwant.2.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 86% ;left: 3% ;right: -3%;">
<a href="https://www.linkedin.com/in/yashavant-kanetkar-9775255" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://en.m.wikipedia.org/wiki/Yashavant_Kanetkar" class="icon" title="User Profile"><i class="fa fa-wikipedia-w"></i></a>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h3 class="featurette-heading">Prateek Narang</h3>
<p class="lead">The prolific and experienced code mentor & programmer with a demonstrated history of working in the professional training & coding industry. His amazing skills include coding in c++, Python, Data Structures and Algorithms,Machine Learning and Data Science with an MS(Research) focused in Machine Learning, Deep Learning & AI from the Indian Institute of Technology, Delhi.
He is also a co-founder and mentor at Coding Blocks and has helped over 35k + students till now in their quest of the Tech World. His style of teaching and approach to life is surely worth noting and will help the attendees to have a deeper insight into Coding.</p>
</div>
<div class="col-md-5 order-md-2 ai">
<img class="img-fluid" src="images/guests/coding/prateek.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay" style="width: 83%;left: 3%;right: -1%;">
<a href="https://instagram.com/prateeknarang27?igshid=1f6jozsmmkifz" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/prateek-narang-0108b39a" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="tab_panel">
<div class="row">
<div class="col">
<div class="tab_panel_content">
<div class="tab_title" data-aos="fade-right" data-aos-duration="1000" data-aos-once="true"><h3>03. Artificial Intelligence</h3></div>
<div class="tab_text">
<p>This Gravitas, explore the world of Artificial Intelligence through an enlightening session with an esteemed panel of speakers. Tech Talks provides an exceptional opportunity to interact with experienced and prominent personalities and garner a fresh perspective of the industry. It is a platform for participants to clear all their inhibitions and get a clear picture of what lies ahead in the industry. The event will essentially focus on providing a precise understanding of the skills a budding AI enthusiast requires.</p>
</div>
</div>
</div>
</div>
<section id="speak">
<div class="speakers">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title_container text-center">
<div class="section_subtitle" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">see what's all about</div>
<div class="section_title" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>WHO’S SPEAKING</h1></div>
</div>
</div>
</div>
<!-- Speaker -->
<!-- ======= Guests Section ======= -->
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Utpal Chakraborty</h3>
<p class="lead">The eminent Data scientist and AI researcher, strategist, and thought leader who has more than
two decades of industry experience, including working as a Principal Architect in the
famous L&t, IBM, Infotech, and the list go on.He has been a very influential mentor for
AI Startups and has helped
IITs, IIMs, and other universities in their Machine Learning, Deep Learning, and Computer Vision studies.He is an Industry Expert on Artificial Intelligence whose recent research on machine-learning titled “Layered Approximation for Deep Neural Networks”
has been appreciated in different premier conferences, institutions, and universities.</p>
</div>
<div class="col-md-5 order-md-1 ai">
<img class="img-fluid" src="images/guests/ai/utpal-chakraborty-1.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay" style="width: 86%;left: 3%;right: -1%;">
<a href="https://www.instagram.com/utpal_bob/" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/utpal-chakraborty/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h3 class="featurette-heading">Dr. Angshuman Ghosh</h3>
<p class="lead">An esteemed veteran AI and data science professional who has led data science teams at giants like Grab, Disney and more. He is also a visiting professor at prestigious institutes such as the IITs, IISc Bangalore and more. He has shared his vast knowledge as a speaker and corporate trainer for companies and organizations such as Samsung, ISRO, KPMG and the Tata Group. He has been awarded the LinkedIn Spotlight 19 for inspiring and vastly contributing to the LinkedIn community with over 100k followers. Angshuman is a powerhouse of knowledge and will certainly leave you feeling enlightened.</p>
</div>
<div class="col-md-5 order-md-2 ai">
<img class="img-fluid" src="images/guests/ai/angshuman.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay" style="width: 94%;left: 3%;right: -3%;">
<a href="https://www.instagram.com/drangshu/" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/drangshu/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Prajit Datta</h3>
<p class="lead">A person whose vision is to develop intelligent systems using artificial intelligence principles which will
change the way we look at the world or in short to make 'Person Of Interest'. Mr.Prajit Datta is currently working as an AI Research Scientist at AFRY (One of the Scandinavian Consulting Giants), based out of Sweden.
He also leads the AI Global Competence Group at AFRY. He is in the council of Forbes Tech for the year 2020 and also a Global Shaper (World Economic Forum).
A great TEDx Speaker and author of 2 books, he is a regular international public speaker on technology
and has delivered talks across major continents.</p>
</div>
<div class="col-md-5 order-md-1 ai">
<img class="img-fluid" src="images/guests/ai/prajit.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay" style="width: 94%;left: 3%;right: -3%;">
<a href="https://instagram.com/prajitdatta?igshid=13qk9ccl6tfvp" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/prajitdatta" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="tab_panel">
<div class="row">
<div class="col">
<div class="tab_panel_content" data-aos="fade-right" data-aos-duration="1000" data-aos-once="true">
<div class="tab_title"><h3>04. Design </h3></div>
<div class="tab_text">
<p>We often like things that interact with us and the only window for that in Technology is UI/UX Design. It is probable that one may create the best functionality but if the design isn't good enough then the odds of people staying on the site or app are highly unlikely in favour. So, to dive into this magnanimous world of Design and kick start your career, register for Tech Talks 2020 where Designing will be broken piece by piece in an unprecedented manner only for you.</p>
</div>
</div>
</div>
</div>
<section id="speak">
<div class="speakers">
<div class="container">
<div class="row">
<div class="col">
<div class="section_title_container text-center">
<div class="section_subtitle" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">see what's all about</div>
<div class="section_title" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>WHO’S SPEAKING</h1></div>
</div>
</div>
</div>
<!-- Speaker -->
<!-- ======= Guests Section ======= -->
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Manasee Narvilkar</h3>
<p class="lead">Manasee Narvilkar is a brilliant and seasoned Product Designer and UX design consultant. She is currently a Human-Computer Interaction researcher at Georgia Institute of Technology. She holds a Master's degree in design from the National Institute of Design and a Master's degree in Human-Computer Interaction from Georgia Tech. She is a sagacious scholar on User Experience design and has done research work on UX paradigms for autonomous cars. She has previously worked at Samsung and Shaadi.com. We are sure her enormous wisdom will help your perspective evolve to higher realms.</p>
</div>
<div class="col-md-5 order-md-1 design">
<img class="img-fluid" src="images/guests/design/manasee.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 90%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/manaseenarvilkar" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://instagram.com/a_sane_me?igshid=g87w4tai0nd4" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h3 class="featurette-heading">Darshan Gajara </h3>
<p class="lead">The passion-driven Product designer who has experience in delivering end-to-end product solutions for India's top ticketing portal- BookMyShow and building a crowdfunding platform for creatives-Wishberry. He is currently working as a Senior Product Designer at the marvelous GraphCMS and he is also the founder and publisher of Product Disrupt which has curated list of resources to learn product design from the internet for free .</p>
</div>
<div class="col-md-5 order-md-2 design">
<img class="img-fluid" src="images/guests/design/darshan.jpg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 90%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/darshangajara/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://www.twitter.com/WeirdoWizard/" class="icon" title="User Profile"><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Abhinav Agrawal</h3>
<p class="lead">An erudite designer currently working as a product designer in Airtel. He graduated as a Computer Science engineer and has taught himself design out of immense curiosity and passion. He has given numerous talks on design and has inspired many. He has also written insightful articles online and is a contributing writer at UX Collective and Muzli. Abhinav is an experienced designer who can instill a direction in design for anyone listening.</p>
</div>
<div class="col-md-5 order-md-1 design">
<img class="img-fluid" src="images/guests/design/abhinav.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 94%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/abhinavagr/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://instagram.com/abhinavagr180" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h3 class="featurette-heading">Punit Chawla</h3>
<p class="lead">The amazing UX/UI designer who has been a 3 Time Google Event Speaker and 4 Time Medium Top Writer in Design & Inspiration. With his skills he even made it to the Semifinals of The Adobe Design Achievement Awards which gets as big as one can think. With his advice and directions the attendees will be able to very well kick start their passion to be a marvellous Designer of UI and UX. He is also a founder at DesignWings whose work never fails to leave one amazed.</p>
</div>
<div class="col-md-5 order-md-2 design">
<img class="img-fluid" src="images/guests/design/punit2.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 94%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/punitweb" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://instagram.com/punitchawlaofficial?igshid=3bno0ijypkfe" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
<div class="container mt-5 reverse-cols">
<div class="row fusion-row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h3 class="featurette-heading">Saptarshi Prakash</h3>
<p class="lead">A phenomenal UX and product designer who is currently working at Swiggy. He is an IIT Madras alumni, and a self-taught designer. He is a design aficionado and an active speaker, having delivered and handled over 50 UX design talks and workshops. He has spoken on well-known platforms like TEDx and at various companies and universities. He also has a YouTube channel where he guides budding and intermediate designers. Saptarshi is a delight to listen to for newcomers interested in making a career in design.
</p>
</div>
<div class="col-md-5 order-md-1 design">
<img class="img-fluid" src="images/guests/design/sapta.jpeg" class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto">
<div class="overlay " style="width: 94%;left: 3%;right: -1%;">
<a href="https://www.linkedin.com/in/saptarshipr/" class="icon" title="User Profile"><i class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/saptarshiux" class="icon" title="User Profile"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Timer -->
<div class="timer_section">
<div class="parallax_background parallax-window" data-parallax="scroll" data-image-src="images/qaz.jpg" data-speed="0.8"></div>
<div class="timer_overlay"></div>
<div class="container">
<div class="row">
<div class="col">
<div class="timer_container">
<ul class="timer d-flex flex-row align-items-center justify-content-start">
<li class="d-flex flex-column justify-content-start align-items-center">
<div id="day" class="timer_num">31</div>
<div class="timer_unit">Days</div>
</li>
<li class="d-flex flex-column justify-content-start align-items-center">
<div id="hour" class="timer_num">00</div>
<div class="timer_unit">Hours</div>
</li>
<li class="d-flex flex-column justify-content-start align-items-center">
<div id="minute" class="timer_num">00</div>
<div class="timer_unit">Minutes</div>
</li>
<li class="d-flex flex-column justify-content-start align-items-center">
<div id="second" class="timer_num">00</div>
<div class="timer_unit">Seconds</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Timeline Section-->
<section id="timeline" style="background-color: white;padding-top: 55px;">
<div class="container" data-aos="fade-up" data-aos-duration="1500" data-aos-once="true">
<h2 style="text-align: center;">EVENTFLOW</h2>
<div class="row">
<div class="col-md-12">
<div class="main-timeline4">
<div class="timeline">
<a href="#" class="timeline-content" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">
<span class="year" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">2 p.m.-3 p.m.</span>
<div class="inner-content">
<h3 class="title" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">Blockchain</h3>
<p class="description" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">
40 mins : Guests Talks
</p>
<p class="description" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">
20 mins : Audience Interaction
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">
<span class="year" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">3 p.m.-4 p.m.</span>
<div class="inner-content">
<h3 class="title" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">Programming</h3>
<p class="description" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">
40 mins : Guest Talks
</p>
<p class="description" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">
20 mins : Audience Interaction
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">
<span class="year" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">4 p.m.-5 p.m.</span>
<div class="inner-content">
<h3 class="title" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">Artificial Intelligence</h3>
<p class="description" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">
40 mins : Guests Talks
</p>
<p class="description" data-aos="fade-right" data-aos-duration="1500" data-aos-once="true">
20 mins : Audience Interaction
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">
<span class="year" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">5 p.m.-6 p.m.</span>
<div class="inner-content">
<h3 class="title" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">Design</h3>
<p class="description" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">
50 mins : Guests Talks
</p>
<p class="description" data-aos="fade-left" data-aos-duration="1500" data-aos-once="true">
10 mins : Audience Interaction
</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<hr>
</section>
<!-- Registration Section -->
<section id="registration">
<div class="cta">
<div class="parallax_background parallax-window" data-parallax="scroll" data-image-src="images/cta.jpg" data-speed="0.8"></div>
<div class="cta_overlay"></div>
<div class="container">
<div class="row">
<div class="col">
<div class="cta_content text-center">
<div class="cta_title text-center" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><h1>Registrations are open!</h1>
</div>
<div class="cta_text text-center" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">
<p style="font-size: 25px;">We don't believe in setting a price tag on knowledge .
</p>
<p style="font-size: 25px;">
All the four sessions are free of cost. See you at Tech Talks 2020 !
</p>
<p style="font-size: 25px;">
Registration cost :- 0/-
</p>
</div>
<div class="button button_3 cta_button" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true"><a href="http://info.vit.ac.in/gravitas2020/gravitas_login.asp" style="color: black;"><span>Register</span></a></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section id="Footer">
<footer class="footer">
<div class="footer_container">
<div class="container">
<div class="row">
<!-- Footer About -->
<div class="col-md-4 footer_col">
<!-- Logo -->
<div class="logo" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">
<a href="https://codechefvit.com/">
<img src="images/CC logo.png"
alt="CodeChef-VIT" style="padding-bottom:5px;margin-top:0px;width: 130px;height: 50px;" class="img-fluid logo mt-3">
</a>
</div>
<div class="footer_text" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">
<p style="font-size: 18px;">Amazed by what you see? You will be surprised to know what more we have in store for you. To know more about CodeChef-VIT and the amazing work that we do, follow us on the social handles given below.</p>
</div>
<div class="social footer_social" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true">
<ul class="d-flex flex-row align-items-center justify-content-start">
<li><a href="https://www.facebook.com/codechefvit"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://medium.com/codechef-vit"><i class="fa fa-medium" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/CodeChefVIT"><i class="fa fa-github" aria-hidden="true"></i></a></li>
<li><a href="https://www.twitter.com/codechefvit"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/codechefvit"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCzFltCrQSB1CKmX440yqTKw"><i class="fa fa-youtube" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/company/codechef-vit-chapter"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
</ul>
</ul>
</div>
</div>
<div class="col-md-4"></div>
<div class="footer_text_right col-md-4" data-aos="fade-up" data-aos-duration="1000" data-aos-once="true" >
<p style="font-size: 18px;">Feel free to contact us in case of any queries </p>
<p style="font-size: 18px;">Pranjal Bhardwaj - +91-9868878789</p>
<p style="font-size: 18px;">Rakshit Maggon - +91-8920533487</p>
<p style="font-size: 18px;">Email : <a href="mailto:codechefvit@gmail.com">codechefvit@gmail.com</a></p>
</div>
</div>
</div>
</div>
<hr>
<div class="footer_bar">
<div class="container">
<div class="row">
<div class="col">
<div class="footer_bar_content d-flex flex-row align-items-center justify-content-start">
<div class="copyright" style="color: whitesmoke;">
Copyright ©<script>document.write(new Date().getFullYear());</script> | Made with <i class="fa fa-heart-o" aria-hidden="true"></i> by <a href="https://codechefvit.com/" target="_blank">CodeChef-VIT</a>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
</section>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="styles/bootstrap-4.1.2/popper.js"></script>
<script src="styles/bootstrap-4.1.2/bootstrap.min.js"></script>
<script src="plugins/greensock/TweenMax.min.js"></script>
<script src="plugins/greensock/TimelineMax.min.js"></script>
<script src="plugins/scrollmagic/ScrollMagic.min.js"></script>
<script src="plugins/greensock/animation.gsap.min.js"></script>
<script src="plugins/greensock/ScrollToPlugin.min.js"></script>
<script src="plugins/colorbox/jquery.colorbox-min.js"></script>
<script src="plugins/easing/easing.js"></script>
<script src="plugins/progressbar/progressbar.min.js"></script>
<script src="plugins/parallax-js-master/parallax.min.js"></script>
<script src="js/custom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script src="js/animation.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="odometer.js"></script>
<script>
AOS.init();
</script>
</body>
</html>