-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
655 lines (649 loc) · 29.6 KB
/
index.html
File metadata and controls
655 lines (649 loc) · 29.6 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
<!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>
<title>JavaScript30 - Susmita Dey</title>
</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">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-10 h-10 text-white p-2 bg-indigo-500 rounded-full"
viewBox="0 0 24 24"
>
<path
d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"
></path>
</svg>
<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-300">
<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>
<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
href="https://twitter.com/share"
data-size="large"
data-text="I'm taking the 30 days of JavaScript Challenge with @WesBos and @its_SusmitaDey. Join me →"
data-url="https://JavaScript30.com"
data-hashtags="JavaScript30"
data-related="its_SusmitaDey"
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" id="projects">
<div
class="mt-16 flex flex-wrap w-full mb-20 flex-col items-center text-center"
>
<h1
class="sm:text-3xl text-2xl font-medium title-font mb-2 text-gray-900"
>
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="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 hover:shadow-xl hover:shadow-yellow-300">
<div
class="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="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:- 5,6,7 -->
<div class="container px-5 py-20 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div
class="h-full border-2 border-gray-200 border-opacity-60 rounded-lg overflow-hidden"
>
<img
src="assets/javascript30.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="#"
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="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="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="#"
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="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/javascript30.png"
alt="video"
/>
<div class="p-6">
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">
Shooting Stars
</h1>
<p class="leading-relaxed mb-3">
Photo booth fam kinfolk cold-pressed sriracha leggings
jianbing microdosing tousled waistcoat.
</p>
<div class="flex items-center flex-wrap">
<a
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>
</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"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-10 h-10 text-white p-2 bg-indigo-500 rounded-full"
viewBox="0 0 24 24"
>
<path
d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"
></path>
</svg>
<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 Copyright —
<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"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"
></path>
</svg>
</a>
<a class="ml-3 text-gray-500">
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
<path
d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"
></path>
</svg>
</a>
<a class="ml-3 text-gray-500">
<svg
fill="currentColor"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0"
class="w-5 h-5"
viewBox="0 0 24 24"
>
<path
stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"
></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</footer>
</body>
</html>