-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1048 lines (1042 loc) · 50.6 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
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <meta content="https://javascript30.com/images/JS3-social-share.png" property="og:image">
<meta content="JavaScript 30" property="og:title">
<meta content="website" property="og:type">
<meta content="https://javascript30.com" property="og:url">
<meta content="JavaScript 30" property="og:site_name">
<meta content="Build 30 things with vanilla JS in 30 days with 30 tutorials" property="og:description">
<meta name="twitter:card" content="photo">
<meta name="twitter:site" content="@wesbos @its_SusmitaDey">
<meta name="twitter:creator" content="@wesbos @its_SusmitaDey">
<meta name="twitter:title" content="JavaScript 30">
<meta name="twitter:description" content="Build 30 things with vanilla JS in 30 days with 30 tutorials">
<meta name="twitter:image" content="https://javascript30.com/images/JS3-social-share.png">
<meta name="twitter:url" content="https://javascript30.com"> -->
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script
async
src="https://platform.twitter.com/widgets.js"
charset="utf-8"
></script>
<title>JavaScript30 - Susmita Dey</title>
<link rel="icon" href="assets/logo.gif">
</head>
<body>
<!-- Navbar -->
<header class="text-gray-600 body-font bg-purple-900 text-white">
<div
class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"
>
<a class="flex title-font font-medium items-center mb-4 md:mb-0">
<img src="assets/logo.gif" alt="logo" class="h-16 w-16 rounded" />
<span class="ml-3 text-xl">JavaScript30</span>
</a>
<nav
class="md:ml-auto flex flex-wrap items-center text-base justify-center"
>
<a href="index.html" class="mr-5 hover:text-yellow-300">Home</a>
<a href="#projects" class="mr-5 hover:text-yellow-300">Projects</a>
<a
href="https://github.com/Susmita-Dey/JavaScript30"
target="_blank"
class="mr-5 hover:text-yellow-300"
>GitHub</a
>
</nav>
<a
href="https://bio.link/susmitadey"
target="_blank"
rel="noopener noreferrer"
>
<button
class="inline-flex items-center bg-yellow-300 border-0 py-1 px-3 focus:outline-none hover:bg-yellow-200 text-blue-500 rounded text-base mt-4 md:mt-0"
>
Connect With Me
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-1"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
</a>
</div>
</header>
<!-- Hero Section -->
<section class="text-gray-600 body-font bg-yellow-200">
<div
class="container mx-auto flex px-5 py-24 items-center justify-center flex-col"
>
<a
class="lg:w-2/6 md:w-3/6 w-5/6 mb-10"
href="https://javascript30.com/"
target="_blank"
rel="noopener noreferrer"
>
<img
class="object-cover object-center rounded"
alt="hero"
src="assets/javascript30.png"
/>
</a>
<div class="text-center lg:w-2/3 w-full">
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900"
>
Collections of 30 days of JavaScript Projects.
</h1>
<div class="flex justify-center mb-8 leading-relaxed">
<a
href="https://twitter.com/intent/tweet?button_hashtag=javascript30&ref_src=twsrc%5Etfw"
class="twitter-hashtag-button"
data-size="large"
data-text="Hello guys!! 👋 Announcing publicly 📢 I'm taking the 30 days of JavaScript Challenge with @WesBos and @its_SusmitaDey. Join me ->"
data-url="https://susmita-dey.github.io/JavaScript30/"
data-related="wesbos,its_SusmitaDey"
data-dnt="true"
data-show-count="false"
>Tweet #javascript30</a
>
</div>
<!-- <p class="mb-8 leading-relaxed">#JavaScript30</p> -->
<div class="flex justify-center">
<a
href="https://github.com/Susmita-Dey/JavaScript30"
target="_blank"
rel="noopener noreferrer"
>
<button
class="inline-flex text-white bg-indigo-500 border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg"
>
GitHub
</button>
</a>
<!-- <a
class=""
href="https://twitter.com/intent/tweet?button_hashtag=javascript30&ref_src=twsrc%5Etfw"
data-size="large"
data-text="Hello guys!! 👋 Announcing publicly 📢 I'm taking the 30 days of JavaScript Challenge with @WesBos and @its_SusmitaDey. Join me ->"
data-related="wesbos,its_SusmitaDey"
data-dnt="true"
data-show-count="false"
target="_blank"
rel="noopener noreferrer"
>
<button
class="ml-4 inline-flex text-gray-700 bg-gray-100 border-0 py-2 px-6 focus:outline-none hover:bg-gray-200 rounded text-lg"
>
Share it!
</button>
</a> -->
</div>
</div>
</div>
</section>
<!-- Section -->
<section
class="text-gray-600 body-font bg-[url('https://cdn.pixabay.com/photo/2017/03/05/21/43/planet-2120004__340.jpg')] bg-cover bg-no-repeat bg-center"
id="projects"
>
<div
class="flex flex-wrap w-full mb-20 flex-col items-center text-center"
>
<h1
class="mt-16 sm:text-3xl text-4xl font-bold title-font mb-2 text-white"
>
My Projects
</h1>
<!-- <p class="lg:w-1/2 w-full leading-relaxed text-gray-500">Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical gentrify, subway tile poke farm-to-table.</p> -->
</div>
<!-- Row 1:-1,2,3 -->
<div class="container px-5 py-10 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="JS Drum Kit video"
autoplay
muted
loop
>
<source src="assets/JS Drum Kit.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
JS Drum Kit
</h1>
<p class="leading-relaxed mb-3">Day 01 Project:- JS Drum Kit</p>
<div class="flex items-center flex-wrap">
<a
href="Day 01 - Drum Kit/index.html"
target="_blank"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2001%20-%20Drum%20Kit"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="CSS + JS Clock video"
autoplay
muted
loop
>
<source src="assets/CSS + JS Clock.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
CSS + JS Clock
</h1>
<p class="leading-relaxed mb-3">
Day 02 Project:- CSS + JS Clock
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 02 - CSS + JS Clock/index.html"
target="_blank"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2002%20-%20CSS%20%2B%20JS%20Clock"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Playing With CSS Variables & JS video"
autoplay
muted
loop
>
<source src="assets/Scoped CSS Variables and JS.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Playing With CSS Variables & JS
</h1>
<p class="leading-relaxed mb-3">
Day 03 Project:- Playing With CSS Variables & JS
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 03 - Playing With CSS Variables & JS/index.html"
target="_blank"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2003%20-%20Playing%20With%20CSS%20Variables%20%26%20JS"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Row 2:- 4,5,6 -->
<div class="container px-5 py-10 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<img
src="assets/Array Cardio Day 1.PNG"
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Array Cardio Day 1 image"
/>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Array Cardio Day 1
</h1>
<p class="leading-relaxed mb-3">
Day 04 Project:- Array Cardio Day 1
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 04 - Array Cardio Day 1/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2004%20-%20Array%20Cardio%20Day%201"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Flex Panels Image Gallery video"
autoplay
muted
loop
>
<source src="assets/Flex Panels.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Flex Panels Image Gallery
</h1>
<p class="leading-relaxed mb-3">
Day 05 Project:- Flex Panels Image Gallery
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 05 - Flex Panels Image Gallery/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2005%20-%20Flex%20Panels%20Image%20Gallery"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Ajax Type Ahead video"
autoplay
muted
loop
>
<source src="assets/Ajax Type Ahead.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Ajax Type Ahead
</h1>
<p class="leading-relaxed mb-3">Day 06 - Ajax Type Ahead</p>
<div class="flex items-center flex-wrap">
<a
href="Day 06 - Ajax Type Ahead/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2006%20-%20Ajax%20Type%20Ahead"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Row 3:- 7,8,9 -->
<div class="container px-5 py-10 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<img
src="assets/Array Cardio Day 2.PNG"
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Array Cardio Day 2 image"
/>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Array Cardio Day 2
</h1>
<p class="leading-relaxed mb-3">
Day 07 Project:- Array Cardio Day 2
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 07 - Array Cardio Day 2/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2007%20-%20Array%20Cardio%20Day%202"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Fun with HTML5 Canvas video"
autoplay
muted
loop
>
<source src="assets/HTML5 Canvas.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Fun with HTML5 Canvas
</h1>
<p class="leading-relaxed mb-3">
Day 08 Project:- Fun with HTML5 Canvas
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 08 - Fun with HTML5 Canvas/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2008%20-%20Fun%20with%20HTML5%20Canvas"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<img
class="lg:h-48 md:h-36 w-full object-cover object-center"
src="assets/14 Must Know Dev Tools Tricks.PNG"
alt="video"
/>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
14 Must Know Dev Tools Tricks
</h1>
<p class="leading-relaxed mb-3">
Day 09 - 14 Must Know Dev Tools Tricks
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 09 - 14 Must Know Dev Tools Tricks/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2009%20-%2014%20Must%20Know%20Dev%20Tools%20Tricks"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Row 3:- 10,11,12 -->
<div class="container px-5 py-10 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Hold Shift to Check Multiple Checkboxes video"
autoplay
muted
loop
>
<source
src="assets/Hold Shift to Check Multiple Checkboxes.mp4"
/>
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Hold Shift to Check Multiple Checkboxes
</h1>
<p class="leading-relaxed mb-3">
Day 10 Project:- Hold Shift to Check Multiple Checkboxes
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 10 - Hold Shift Checkboxes/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2010%20-%20Hold%20Shift%20Checkboxes"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Custom Video Player video"
autoplay
muted
loop
>
<source src="assets/Custom Video Player.mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Custom Video Player
</h1>
<p class="leading-relaxed mb-3">
Day 11 Project:- Custom Video Player
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 11 - Custom Video Player/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2011%20-%20Custom%20Video%20Player"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div
class="bg-white h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<video
class="lg:h-48 md:h-36 w-full object-cover object-center"
alt="Key Sequence Detection(KONAMI CODE)"
autoplay
muted
loop
>
<source src="assets/Key Sequence Detection(KONAMI CODE).mp4" />
</video>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Key Sequence Detection(KONAMI CODE)
</h1>
<p class="leading-relaxed mb-3">
Day 12 - Key Sequence Detection(KONAMI CODE)
</p>
<div class="flex items-center flex-wrap">
<a
href="Day 12 - Key Sequence Detection/index.html"
class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0"
>Learn More
<svg
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span
class="text-gray-400 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1"
>
<a
href="https://github.com/Susmita-Dey/JavaScript30/tree/main/Day%2012%20-%20Key%20Square%20Detection"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
style="fill: undefined"
>
<path
d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z"
></path>
</svg>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-white body-font bg-purple-900">
<div
class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col"
>
<a
class="flex title-font font-medium items-center md:justify-start justify-center"
>
<img src="assets/logo.gif" alt="logo" class="h-16 w-16 rounded" />
<span class="ml-3 text-xl">JavaScript30</span>
</a>
<p
class="text-sm sm:ml-4 sm:pl-4 sm:border-l-2 sm:border-gray-200 sm:py-2 sm:mt-0 mt-4"
>
© 2022 All Rights Reserved —
<a
href="https://twitter.com/its_SusmitaDey"
class="ml-1"
rel="noopener noreferrer"
target="_blank"
>@Susmita Dey</a
>
</p>
<span
class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start"
>
<a class="text-gray-500">
<svg
fill="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"
></path>
</svg>
</a>
<a class="ml-3 text-gray-500">
<svg
fill="currentColor"
stroke-linecap="round"