-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1811 lines (1576 loc) · 105 KB
/
index.html
File metadata and controls
1811 lines (1576 loc) · 105 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head manifest="app_cachce.appcache">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>The Python Week</title>
<meta content="the python week, the python week an event of mdc, python, programming, thepythonweek, thepythonweek.tech, mehsana developers club, hackathon, best hackathon,2021, new year, technology" name="keywords">
<meta name="description" content="The Python Week is organized by the Mehsana Developers Club, which has 7 days of workshops and 48 hours of hackathon, everything just centered around Python!">
<!-- Favicons -->
<link async href="assets/img/POfPython Week.svg" rel="icon">
<link async href="assets/img/POfPython Week.svg" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="assets/css/GoogleFonts.css" rel="stylesheet" loading="lazy">
<!-- Vendor CSS Files -->
<!-- <link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> -->
<link async rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- <link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"> -->
<link async href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
<!-- <link href="assets/vendor/venobox/venobox.css" rel="stylesheet"> -->
<link async href="https://cdnjs.cloudflare.com/ajax/libs/venobox/1.9.1/venobox.css" rel="stylesheet">
<!-- <link href="assets/vendor/aos/aos.css" rel="stylesheet"> -->
<link async href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link async href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- <script src="assets/vendor/bootstrap/js/Jquery.min.js"></script> -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script type="text/javascript">
$(function() {
$(this).bind('contextmenu', function() {
return false;
})
})
</script>
<div class="progress-container">
<div class="progress-bar" id="myBar"></div>
</div>
<!-- ======= Mobile nav toggle button ======= -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class='bx bx-menu-alt-right'></i></button>
<!-- ======= Header ======= -->
<header id="header" class="d-flex flex-column justify-content-center">
<nav class="nav-menu">
<ul>
<!-- <li data-aos="zoom-in" data-aos-delay="1700"><a href="#about"><i class="bx bx-time"></i> <span>Coming Soon</span></a></li> -->
<li data-aos="zoom-in" data-aos-delay="1900"><a href="#facts"><i
class='bx bx-info-circle'></i><span>About</span></a></li>
<!-- <li data-aos="zoom-in" data-aos-delay="2100"><a href="#resume"><i class='bx bx-photo-album'></i> <span>Gallery</span></a></li> -->
<li data-aos="zoom-in" data-aos-delay="2100"><a href="Schedule/"><i class='bx bx-calendar-check'></i>
<span>Schedule</span></a></li>
<li data-aos="zoom-in" data-aos-delay="2100"><a href="#speakers"><i
class='bx bx-microphone'></i><span>Speakers</span></a></li>
<li data-aos="zoom-in" data-aos-delay="2100"><a href="#Sponsor"><i
class='bx bx-money'></i><span>Sponsor</span></a></li>
<li data-aos="zoom-in" data-aos-delay="2300"><a href="#portfolio"><i class="bx bx-message"></i>
<span>FAQs</span></a></li>
<li data-aos="zoom-in" data-aos-delay="2500"><a href="#services"><i class="bx bx-user"></i> <span>Our
Team</span></a></li>
<li data-aos="zoom-in" data-aos-delay="2700"><a href="#contact"><i class="bx bx-envelope"></i>
<span>Contact</span></a></li>
</ul>
</nav>
<!-- .nav-menu -->
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center">
<a id="ToggleFullScreen" onclick="ToggleFullScreen()" style="z-index: 10;"><i class='bx bx-fullscreen'></i></a>
<script>
function ToggleFullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) || (!document.mozFullScreen && !document.webkitIsFullScreen)) {
if (document.documentElement.requestFullScreen) {
document.documentElement.requestFullScreen();
} else if (document.documentElement.mozRequestFullScreen) {
document.documentElement.mozRequestFullScreen();
} else if (document.documentElement.webkitRequestFullScreen) {
document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
}
document.getElementById("ToggleFullScreen").innerHTML = "<i class='bx bx-exit-fullscreen'></i>";
} else {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
}
document.getElementById("ToggleFullScreen").innerHTML = "<i class='bx bx-fullscreen'></i>";
}
}
</script>
<div class="container" data-aos="zoom-in" data-aos-delay="50">
<h1 class="text-center">
<video id="mylogo" autoplay muted>
<source src="assets/img/tpw.webm" type="video/mp4"> The Python Week
</video>
</h1>
<p id="RemoveMargin" data-aos="zoom-in" data-aos-delay="3000"><span class="typed" data-typed-items="7 Days Workshops, 48 Hours Hackathon"></span></p>
<!--
<p data-aos="zoom-in" data-aos-delay="3000">
7 Days Workshops + 48 Hours Hackathon
</p>-->
<p data-aos="zoom-in" data-aos-delay="3000">
<span id="SmallText">
1st January 2021 - 10th January 2021
</span>
</p>
<div class="row justify-content-md-center mt-5 text-center">
<div class="col-md-4" data-aos="zoom-in" data-aos-delay="3000" data-aos-offset="-150">
<!-- <a id="devfolio-apply-now" style="max-width: 250px;"></a> -->
<div class="apply-button" data-hackathon-slug="thepythonweek" data-button-theme="light" style="height: 44px; width: 250px"></div>
</div>
</div>
<div class="row mt-5 justify-content-sm-center text-center">
<span class="tooltiptext" id="DiscordToolTip" data-aos="zoom-in" data-aos-delay="3000" data-aos-offset="-150">Join Us On Discord</span>
<div class="col-sm-1" id="AddLeft" data-aos="zoom-in" data-aos-delay="3000" data-aos-offset="-150">
<a id="Discord" href="https://discord.gg/t3AERdaewX" target="_blank" onmouseover="ChangeDiscordToolTipClor()" onmouseout="ResetDiscordToolTipClor()" style="z-index: 5;">
<svg id="Capa_1" data-name="Capa 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 414">
<defs>
<style>
.cls-1212 {
fill: var(--GoogleGreen);
}
#Discord:hover .cls-1212 {
fill: #fff;
}
</style>
</defs>
<path class="cls-1212"
d="M484.6,225.1c-20.4-70.1-43.3-106.2-43.7-106.9S407.1,77.8,328.8,49L318.5,77.2c37.2,13.6,63.7,30.3,78.2,41.1-43.4-12.9-95-20.9-140.7-20.9s-97.3,8-140.7,20.9c14.5-10.8,41-27.5,78.2-41.1L183.2,49C104.9,77.8,72.4,116.6,71.1,118.2S47.7,155,27.4,225.1C7.7,292.5.3,387.7,0,391.5,1.7,394.3,42,463,151.7,463l27.8-40.3a292.1,292.1,0,0,1-88-39.7l16.6-24.9a267.5,267.5,0,0,0,295.8,0L420.5,383a292.1,292.1,0,0,1-88,39.7L360.3,463C470,463,510.2,394.3,512,391.5c-.3-3.8-7.7-99-27.4-166.4Zm-298,78.4h-30v-50h30Zm168.8,0h-30v-50h30Z"
transform="translate(0 -49)" />
</svg>
</a>
</div>
<!-- onclick="window.open('https://discord.gg/k4nBdDpTqh', '_blank');" -->
<div class="col-sm-1" id="AddTop" data-aos="zoom-in" data-aos-delay="3000" data-aos-offset="-150">
<a id="Youtube" href="https://www.youtube.com/channel/UCt3A17nostcGLGV8lSLBcFQ?view_as=subscriber" target="_blank" onmouseover="ChangeYoutubeToolTipClor()" onmouseout="ResetYoutubeToolTipClor()" class="align-self-start">
<svg version="1.1" id="Capa_12121" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 10 6.9" style="enable-background:new 0 0 10 6.9;" xml:space="preserve">
<defs>
<style>
#Capa_12121 {
fill: var(--GoogleRed);
}
#Youtube:hover #Capa_12121 {
fill: #fff;
}
</style>
</defs>
<g>
<g>
<path
d="M9.6,0.7C9.3,0.2,9,0.1,8.4,0.1C7.8,0,6.3,0,5,0C3.7,0,2.2,0,1.6,0.1C1,0.1,0.7,0.2,0.4,0.7C0.1,1.1,0,2,0,3.4
c0,0,0,0,0,0c0,0,0,0,0,0v0c0,1.5,0.1,2.3,0.4,2.8C0.7,6.7,1,6.8,1.6,6.8c0.6,0,2.1,0.1,3.4,0.1c1.3,0,2.8,0,3.4-0.1
c0.6,0,0.9-0.1,1.2-0.6C9.9,5.7,10,4.9,10,3.4c0,0,0,0,0,0v0C10,2,9.9,1.1,9.6,0.7z M3.8,5.3V1.6l3.1,1.9L3.8,5.3z" />
</g>
</g>
</svg>
</a>
</div>
<span class="tooltiptext" id="YoutubeToolTip" data-aos="zoom-in" data-aos-delay="3000" data-aos-offset="-150">Watch Us On YouTube</span>
<script>
function ChangeYoutubeToolTipClor() {
document.getElementById("YoutubeToolTip").style.transition = "all 0.5s";
document.getElementById("YoutubeToolTip").style.background = "#EA4335";
document.getElementById("YoutubeToolTip").style.color = "White";
}
function ResetYoutubeToolTipClor() {
document.getElementById("YoutubeToolTip").style.background = "white";
document.getElementById("YoutubeToolTip").style.color = "#EA4335";
}
function ChangeDiscordToolTipClor() {
document.getElementById("DiscordToolTip").style.transition = "all 0.5s";
document.getElementById("DiscordToolTip").style.background = "#34A853";
document.getElementById("DiscordToolTip").style.color = "White";
}
function ResetDiscordToolTipClor() {
document.getElementById("DiscordToolTip").style.background = "white";
document.getElementById("DiscordToolTip").style.color = "#34A853";
}
</script>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<!-- ======= Facts Section ======= -->
<section id="facts">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
<div class="col-md-12">
<script>
var clk = 1,
hvr = 1;
function ChangeColor1() {
document.getElementById("AboutDescription").style.transition = "all 0.5s";
if (clk == hvr) {
if (clk == 1) {
document.getElementById("AboutDescription").style.background = "#4285F4";
document.getElementById("AboutDescription").style.color = "#fff";
} else if (clk == 2) {
document.getElementById("AboutDescription").style.background = "#EA4335";
document.getElementById("AboutDescription").style.color = "#fff";
} else if (clk == 3) {
document.getElementById("AboutDescription").style.background = "#FBBC04";
document.getElementById("AboutDescription").style.color = "#fff";
}
document.getElementById("AboutDescription").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.2)";
}
}
function RestoreColor1() {
document.getElementById("AboutDescription").style.transition = "all 0.5s";
document.getElementById("AboutDescription").style.background = "#fff";
document.getElementById("AboutDescription").style.color = "#728394";
document.getElementById("AboutDescription").style.boxShadow = "0px 5px 15px 0px rgba(110, 123, 131, 0.05)";
if (clk == 1) {
document.getElementById("clk2Btn").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.05)";
document.getElementById("clk3Btn").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.05)";
} else if (clk == 2) {
document.getElementById("clk1Btn").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.05)";
document.getElementById("clk3Btn").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.05)";
} else if (clk == 3) {
document.getElementById("clk1Btn").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.05)";
document.getElementById("clk2Btn").style.boxShadow = "0px 5px 35px 0px rgba(110, 123, 131, 0.05)";
}
}
function SetContent1() {
document.getElementById("AboutDescription").style.marginTop = "50px";
document.getElementById("AddHeadingHere").innerHTML = "The Python Week";
document.getElementById("AddContentHere").innerHTML = "The Python Week is an event organized under DevLoop, which is an annual celebration of the Mehsana Developers Club. The event consists of 7 days of workshops that will solely focus on Python-related subjects. After the week-long sessions, we will host 48 hours of Virtual Hackathon.";
clk = 1;
document.getElementById("clk1Btn").style.boxShadow = "0px 5px 15px 0px rgba(110, 123, 131, 0.25)";
RestoreColor1();
ChangeColor1();
}
function SetContent2() {
document.getElementById("AboutDescription").style.marginTop = "70px";
document.getElementById("AddHeadingHere").innerHTML = "About Workshops";
document.getElementById("AddContentHere").innerHTML = "The Python Week will have 7 days of workshops completely dedicated to Python and related technologies. All the sessions will be delivered by some of the amazing community speakers and experts from their respective fields. You will get to see the demo in each session.";
clk = 2;
document.getElementById("clk2Btn").style.boxShadow = "0px 5px 15px 0px rgba(110, 123, 131, 0.25)";
RestoreColor1();
ChangeColor1();
}
function SetContent3() {
document.getElementById("AboutDescription").style.marginTop = "55px";
document.getElementById("AddHeadingHere").innerHTML = "About Hackathon";
document.getElementById("AddContentHere").innerHTML = "The Python Week will have 48 hours of hackathon post 7 days of workshops. Hackathon will be focused on solutions built with the help of at least one Python element. Enjoy your 48 hours of efforts with lots of mini events involved in between. Showcase your work and earn prizes.";
clk = 3;
document.getElementById("clk3Btn").style.boxShadow = "0px 5px 15px 0px rgba(110, 123, 131, 0.25)";
RestoreColor1();
ChangeColor1();
}
function onOver1() {
hvr = 1;
}
function onOver2() {
hvr = 2;
}
function onOver3() {
hvr = 3;
}
function SetStaring() {
document.getElementById("AboutDescription").style.marginTop = "50px";
document.getElementById("clk1Btn").style.boxShadow = "0px 5px 15px 0px rgba(110, 123, 131, 0.25)";
}
setTimeout(SetStaring, 1000);
</script>
<div class="row">
<div class="col-md-6">
<div class="row card Curved-Edge border-0" onmouseover="onOver1(); ChangeColor1()" onmouseout="RestoreColor1()" onclick="SetContent1()" id="clk1Btn">
<div class="row">
<div class="col-1 align-self-center">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
<circle cx="25" cy="25" r="25" fill="#4285F4" />
<style type="text/css">
.st0 {
fill: #FFFFFF;
}
</style>
<g>
<g>
<path class="st0"
d="M30.2,24.05c2.43-1.1,2.79-9.48,1.36-11.95c-1.87-3.22-10.77-2.58-13.58-0.27c-0.32,1.14-0.29,3.22-0.27,4.87
h8.82v0.77H17.7c0,0.01-3.93,0.02-3.93,0.02c-6.77,0-6.63,14.71,2.3,14.71c0,0,0.33-3.26,0.9-4.89
C18.75,22.27,26.2,25.86,30.2,24.05z M20.96,15.5c-1.02,0-1.84-0.82-1.84-1.84c0-1.02,0.82-1.84,1.84-1.84
c1.02,0,1.84,0.83,1.84,1.84C22.81,14.68,21.98,15.5,20.96,15.5z" />
<path class="st0" d="M33.62,17.8c0,0-0.23,3.26-0.81,4.89c-1.77,5.04-9.22,1.45-13.22,3.26c-2.43,1.1-2.79,9.48-1.36,11.95
c1.87,3.23,10.77,2.58,13.58,0.27c0.32-1.14,0.29-3.22,0.27-4.87h-8.82v-0.77h8.82c0-0.01,4.35-0.02,4.35-0.02
C42.67,32.51,43.23,17.8,33.62,17.8z M28.51,34.18c1.02,0,1.84,0.82,1.84,1.84c0,1.02-0.83,1.84-1.84,1.84s-1.84-0.82-1.84-1.84
C26.67,35,27.49,34.18,28.51,34.18z" />
</g>
</g>
</svg>
</div>
<div class="col ml-5">
<div class="row">
<h5 class="text-left">
The Python Week
</h5>
</div>
<div class="row">
<p class="text-left">
Event having Workshops & Hackathon
</p>
</div>
</div>
</div>
</div>
<div class="row card Curved-Edge border-0" onmouseover="onOver2(); ChangeColor1()" onmouseout="RestoreColor1()" onclick="SetContent2()" id="clk2Btn">
<div class="row">
<div class="col-1 align-self-center">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
<circle cx="25" cy="25" r="25" fill="#EA4335" />
<style type="text/css">
.st0 {
fill: #FFFFFF;
}
</style>
<g>
<g>
<path class="st0"
d="M38.83,30.63H11.17c-0.87,0-1.57-0.71-1.57-1.57V14.19c0-0.87,0.71-1.57,1.57-1.57h27.65
c0.87,0,1.57,0.71,1.57,1.57v14.87C40.4,29.92,39.69,30.63,38.83,30.63z M11.17,13.89c-0.17,0-0.3,0.14-0.3,0.3v14.87
c0,0.17,0.14,0.3,0.3,0.3h27.65c0.17,0,0.3-0.14,0.3-0.3V14.19c0-0.17-0.14-0.3-0.3-0.3H11.17z" />
</g>
<g>
<path class="st0"
d="M21.71,26.45c-0.21-0.11-0.34-0.33-0.34-0.56v-8.52c0-0.24,0.13-0.46,0.34-0.56
c0.21-0.11,0.47-0.09,0.66,0.05l5.99,4.26c0.17,0.12,0.27,0.31,0.27,0.52c0,0.21-0.1,0.4-0.27,0.52c0,0-4.5,3.2-5.99,4.26
C22.26,26.48,22.03,26.62,21.71,26.45z M22.64,18.59v6.06l4.26-3.03L22.64,18.59z" />
</g>
<path class="st0"
d="M39.76,34.24H27.63c-0.28-1.08-1.27-1.88-2.43-1.88c-1.17,0-2.15,0.8-2.43,1.88H10.24
c-0.35,0-0.64,0.28-0.64,0.64c0,0.35,0.28,0.64,0.64,0.64h12.53c0.28,1.08,1.27,1.88,2.43,1.88c1.17,0,2.15-0.8,2.43-1.88h12.14
c0.35,0,0.64-0.28,0.64-0.64C40.4,34.52,40.12,34.24,39.76,34.24z M25.19,36.11c-0.69,0-1.24-0.56-1.24-1.24
c0-0.69,0.56-1.24,1.24-1.24c0.69,0,1.24,0.56,1.24,1.24C26.44,35.56,25.88,36.11,25.19,36.11z" />
</g>
</svg>
</div>
<div class="col ml-5">
<div class="row">
<h5 class="text-left">
About Workshops
</h5>
</div>
<div class="row">
<p class="text-left">
Sessions conducted by great speakers
</p>
</div>
</div>
</div>
</div>
<div class="row card Curved-Edge border-0" onmouseover="onOver3(); ChangeColor1()" onmouseout="RestoreColor1()" onclick="SetContent3()" id="clk3Btn">
<div class="row">
<div class="col-1 align-self-center">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50">
<circle cx="25" cy="25" r="25" fill="#FBBC04" />
<style type="text/css">
.st0 {
fill: #FFFFFF;
}
</style>
<g>
<g>
<g>
<path class="st0" d="M42.25,24.09l-8.14-8.63c-0.5-0.53-1.34-0.56-1.87-0.05c-0.53,0.5-0.55,1.34-0.05,1.87L39.47,25l-7.29,7.72
c-0.5,0.53-0.48,1.37,0.05,1.87c0.26,0.24,0.58,0.36,0.91,0.36c0.35,0,0.7-0.14,0.96-0.41l8.14-8.63
C42.73,25.4,42.73,24.6,42.25,24.09z" />
</g>
</g>
<g>
<g>
<path class="st0" d="M17.82,32.72L10.53,25l7.29-7.72c0.5-0.53,0.48-1.37-0.05-1.87c-0.53-0.5-1.37-0.48-1.87,0.05l-8.14,8.63
c-0.48,0.51-0.48,1.3,0,1.81l8.15,8.63c0.26,0.28,0.61,0.41,0.96,0.41c0.32,0,0.65-0.12,0.91-0.36
C18.29,34.09,18.32,33.25,17.82,32.72z" />
</g>
</g>
<g>
<g>
<path class="st0"
d="M27.14,11.02c-0.72-0.11-1.4,0.39-1.51,1.11l-3.87,25.36c-0.11,0.72,0.39,1.4,1.11,1.51
C22.93,39,23,39,23.06,39c0.64,0,1.2-0.47,1.3-1.12l3.87-25.36C28.35,11.8,27.86,11.13,27.14,11.02z" />
</g>
</g>
</g>
</svg>
</div>
<div class="col ml-5">
<div class="row">
<h5 class="text-left">
About Hackathon
</h5>
</div>
<div class="row">
<p class="text-left">
Build a solution with a Python element
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row padding-content">
<div class="col border-0" id="AboutDescription">
<div class="col">
<h5 class="text-center" id="AddHeadingHere">
The Python Week
</h5>
<p class="text-center pt-3" id="AddContentHere">The Python Week is an event organized under DevLoop, which is an annual celebration of the Mehsana Developers Club. The event consists of 7 days of workshops that will solely focus on Python-related subjects.
After the week-long sessions, we will host 48 hours of Virtual Hackathon.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Resume Section ======= -->
<section id="resume">
<div class="container">
<div class="section-title">
<h2>Gallery</h2>
</div>
<div data-aos="fade-up">
<iframe src="landkit.goodthemes.html" id="Gallery-Section" scrolling="no" loading="lazy">
</iframe>
</div>
</div>
</section>
<!-- ======= Speakers Section ======= -->
<section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Our Speakers</h2>
</div>
<div class="row justify-content-center">
<!--Speaker 1-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-blue SpeakersIcon BlueCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="BlueCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/Andrew.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Andrew Knight</a></h4>
<p>An engineer, consultant, and international speaker</p>
<div class="Profile-Social-links">
<a target="_blank" href="https://twitter.com/AutomationPanda"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/bhargav-p-patel/" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 1 end-->
<!--Speaker 2-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink RedCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="RedCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/Bhargav.webp" loading="lazy" style="z-index: 2;" width="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Bhargav Patel</a></h4>
<p>Researcher</p>
<div class="Profile-Social-links">
<a href="" target="_blank"><i class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/bhargav-p-patel/" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 2 end-->
<!--Speaker 7-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink YellowCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="YellowCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/bratin.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Bratin Kundu</a></h4>
<p>Organizer MDC</p>
<div class="Profile-Social-links">
<a href="https://twitter.com/BratinKundu" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/bratin-kundu-449954170/" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 7 end-->
<!--Speaker 4-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink GreenCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="GreenCircle" id="ayushBG" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/ayush.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Ayush Thakur</a></h4>
<p>ML Engineer at Weights and Biases.</p>
<div class="Profile-Social-links">
<a href="https://www.twitter.com/ayushthakur0" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/ayush-thakur-731914149/" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 4 end-->
<!--Speaker 5-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink BlueCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="BlueCircle" id="AnubhavBG" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/anubhav.webp" loading="lazy" style="z-index: 2;"
height="300" clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Anubhav Singh</a></h4>
<p>Full Stack Developer at 1K Kirana Bazar</p>
<div class="Profile-Social-links">
<a href="https://www.twitter.com/xprilion" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/xprilion" target="_blank"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 5 end-->
<!--Speaker 6-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink RedCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="RedCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/shivay.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Shivay Lamba</a></h4>
<p>Lead Engineer at Darkhouse</p>
<div class="Profile-Social-links">
<a href="https://www.twitter.com/howdevelop" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/shivaylamba" target="_blank"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 6 end-->
<!--Speaker 3-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink YellowCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="YellowCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/gaurav.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Gaurav Jain</a></h4>
<p>Software Engineer at Evalueserve.com</p>
<div class="Profile-Social-links">
<a href="https://www.twitter.com/gaurav_jain98" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/gauravjain98/" target="_blank"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 3 end-->
<!--Speaker 8-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink GreenCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="GreenCircle" id="ayushBG" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/shuvam.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Shuvam Manna</a></h4>
<p>Product Design Intern at Winuall</p>
<div class="Profile-Social-links">
<a href="https://twitter.com/shuvam360" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/shuvam-manna" target="_blank"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 8 end-->
<!--Speaker 9-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink BlueCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="BlueCircle" id="AnubhavBG" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/anubhav.webp" loading="lazy" style="z-index: 2;"
height="300" clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Soumya Ghosh Dastidar</a></h4>
<p>Intern at Tezos India Foundation.</p>
<div class="Profile-Social-links">
<a href="https://www.twitter.com/gdsoumya" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/gdsoumya" target="_blank"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 9 end-->
<!--Speaker 10-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink RedCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="RedCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/marc.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Marc Cohen</a></h4>
<p>Developer Advocate, GCP-Google</p>
<div class="Profile-Social-links">
<a href="https://twitter.com/marcacohen" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/marccohen3/" target="_blank"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 10 end-->
<!--Speaker 10-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink RedCard">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="130" height="130" viewBox="0 0 300 300">
<circle class="RedCircle" cx="150" cy="150" r="150" />
<clipPath id="circleView">
<circle cx="150" cy="150" r="150" />
</clipPath>
<image href="assets/img/marc.webp" loading="lazy" style="z-index: 2;" height="300"
clip-path="url(#circleView)">
</svg>
</div>
<h4><a>Marc Cohen</a></h4>
<p>Developer Advocate, GCP-Google</p>
<div class="Profile-Social-links">
<a href="https://twitter.com/marcacohen" target="_blank"><i
class="bx bxl-twitter"></i></a>
<a href="https://www.linkedin.com/in/marccohen3/" target="_blank"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<!--Speaker 10 end-->
</div>
</div>
</div>
</section>
<!-- End Speakers Section -->
<section id="Sponsor">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Sponsors</h2>
</div>
<div class="row d-flex justify-content-center">
<div class="col-lg-12 d-flex justify-content-center font-weight-bold" style="color:var(--MatteBlack)">
<h4>Platinium Sponsor</h4>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.python.org/psf-landing/">
<div class="icon-sponsers">
<img src="Svg/PSF.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://devfolio.co/">
<div class="icon-sponsers">
<img src="Svg/Devfolio.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-12 d-flex justify-content-center border-bottom mb-3">
</div>
<div class="col-lg-12 d-flex justify-content-center font-weight-bold mt-5" style="color:var(--MatteBlack)">
<h4>Gold Sponsor</h4>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.github.com/">
<div class="icon-sponsers">
<img src="Svg/github.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://hackplus.io/">
<div class="icon-sponsers">
<img src="Svg/hackplus.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://webiflu.com/">
<div class="icon-sponsers">
<img src="Svg/Webiflu.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://matic.network/">
<div class="icon-sponsers">
<img src="Svg/matic.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://tezos.com/">
<div class="icon-sponsers">
<img src="Svg/Tezos.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.portis.io/">
<div class="icon-sponsers">
<img src="Svg/portis.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://akashtechnolabs.com/">
<div class="icon-sponsers">
<img src="Svg/akash-technolabs.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-12 d-flex justify-content-center border-bottom mb-3">
</div>
<div class="col-lg-12 d-flex justify-content-center font-weight-bold mt-5" style="color:var(--MatteBlack)">
<h4>Sponsor</h4>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.codingninjas.com/">
<div class="icon-sponsers">
<img src="Svg/CodingNinja.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.digitalocean.com/">
<div class="icon-sponsers">
<img src="Svg/digitalocean.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.wooclap.com/">
<div class="icon-sponsers">
<img src="https://www.wooclap.com/images/logo/logo-blue.svg" loading="lazy" decoding="async" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://codingblocks.com/">
<div class="icon-sponsers">
<img src="Svg/codingblocks.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://1password.com/">
<div class="icon-sponsers">
<img src="Svg/1Password.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://balsamiq.com/">
<div class="icon-sponsers">
<img src="Svg/balsamiq.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.clerky.com/">
<div class="icon-sponsers">
<img src="Svg/Clerky.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.echoar.xyz/">
<div class="icon-sponsers">
<img src="Svg/echoAR.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://egghead.io/">
<div class="icon-sponsers">
<img src="Svg/egghead.io.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.elastic.co/">
<div class="icon-sponsers">
<img src="Svg/elastic.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://repl.it/">
<div class="icon-sponsers">
<img src="Svg/repl.it.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.sashido.io/en/">
<div class="icon-sponsers">
<img src="Svg/sashido.svg" decoding="async" loading="lazy" style="z-index: 2;">
</div>
</a>
</div>
<div class="col-lg-3 col-md-6 align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<a href="https://www.taskade.com/">
<div class="icon-sponsers">