-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.html
767 lines (679 loc) · 30.5 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
<!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" />
<link rel="icon" href="assets\favicon\20241228_111649.png">
<title>CSS Buttons</title>
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./buttons/buttons.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet" />
</head>
<body>
<header>
<div class="navbar">
<div class="title">CSS Buttons</div>
<div class="content-text">
A collection of simple and subtle CSS-only hover animations for
buttons. ✨
</div>
</div>
</header>
<main>
<div class="container">
<div class="button-container">
<button class="button-def button-1"><span>Hover Me</span></button>
<div class="createdby-section">
Created by
<a href="">Design and Code</a>
</div>
</div>
<div class="button-container">
<button class="button-def button-2">
<span><span>New page</span></span>
</button>
<div class="createdby-section">
Created by
<a href="">Design and Code</a>
</div>
</div>
<div class="button-container">
<button class="button-def button-3"><span>Render</span></button>
<div class="createdby-section">
Created by
<a href="">Design and Code</a>
</div>
</div>
<div class="button-container">
<button class="button-def button-4">
<span>Hover me</span>
<div class="marquee" aria-hidden="true">
<div class="marquee__inner">
<span>Hover me</span>
<span>Hover me</span>
<span>Hover me</span>
<span>Hover me</span>
</div>
</div>
</button>
<div class="createdby-section">
Created by
<a href="">Design and Code</a>
</div>
</div>
<div class="button-container">
<button class="button-def button-5">
<span>Hover me</span>
<div class="marquee" aria-hidden="true">
<div class="marquee__inner">
<span>Hover me</span>
<span>Hover me</span>
<span>Hover me</span>
<span>Hover me </span>
</div>
</div>
</button>
<div class="createdby-section">
Created by
<a href="">Design and Code</a>
</div>
</div>
<div class="button-container">
<button class="button-def button-6"><span>Hover me</span></button>
<div class="createdby-section">
Created by
<a href="">Design and Code</a>
</div>
</div>
<!-- buttons starts from here -->
<!-- <div class="button-container flex align-items-center justify-content-center">
paste your button here
eg
<button class="button-1.. button--example"><span>example</span></button>
</div> -->
<div class="button-container flex align-items-center justify-content-center">
<button class="button jackwebdev-button-1">
<span>Hover Me</span>
</button>
<div class="createdby-section">
Created by
<a href="https://github.com/jackwebdev">jackwebdev</a>
</div>
</div>
<!-- buttons end here -->
<!-- button starts here -->
<div class="button-container">
<button class="RhyshaKachari-button-1">
<span>HOVER ME, THEN CLICK ME!</span>
</button>
<div class="createdby-section">
Created by
<a href="https://github.com/RhyshaKachari">Rhysha Kachari</a>
</div>
</div>
<div class="button-container">
<button class="AmitSahoo45-button-1">Button</button>
<div class="createdby-section">
Created by
<a href="https://github.com/AmitSahoo45">Amit Sahoo</a>
</div>
</div>
<div class="button-container">
<button class="AmitSahoo45-button-2"><span>Hover Me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/AmitSahoo45">Amit Sahoo</a>
</div>
</div>
<div class="button-container">
<button class="AmitSahoo45-button-3">Hover Me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/AmitSahoo45">Amit Sahoo</a>
</div>
</div>
<!-- button ends here -->
<!-- button 9 -->
<!-- button starts here -->
<div class="button-container">
<button class="Mahekjain-button-1">Hover Me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Mahekjain2706">Mahek jain</a>
</div>
</div>
<!-- button end here -->
<!-- button 10 -->
<!-- button starts here -->
<div class="button-container">
<div class="Mahekjain-btn-2">
<a href="#">
<span></span>
<span></span>
<span></span>
<span></span>
Neon button!!<br />Hover Me
</a>
</div>
<div class="createdby-section">
Created by
<a href="https://github.com/Mahekjain2706">Mahek jain</a>
</div>
</div>
<!-- button end here -->
<!-- button starts here -->
<div class="button-container flex align-items-center justify-content-center">
<button class="ingrzs-button-1"><span>Button</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Ingrzs">Ingrzs</a>
</div>
</div>
<!-- button end here -->
<!-- mahi-btn starts -->
<div class="button-container">
<button class="Mahich123-button-1 button-def">Bright</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Mahich123">Mahi Chowdhury</a>
</div>
</div>
<div class="button-container">
<button class="Mahich123-button-2 button-def">Bright 2</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Mahich123">Mahi Chowdhury</a>
</div>
</div>
<div class="button-container">
<button class="Mahich123-button-3 button-def">Bright 3</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Mahich123">Mahi Chowdhury</a>
</div>
</div>
<div class="button-container">
<button class="Mahich123-button-4 button-def">Bright 4</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Mahich123">Mahi Chowdhury</a>
</div>
</div>
<!-- mahi-btn ends -->
<!-- Button 9 -->
<div class="button-container">
<button class="AjayMaheshwari23-button-1"><span>HOVER ME</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/AjayMaheshwari23">AjayMaheshwari</a>
</div>
</div>
<!--END-->
<!-- ImOnlyYisus btn start here -->
<div class="button-container">
<div class="ImOnlyYisusContainer">
<button class="ImOnlyYisus-btn">Button</button>
</div>
<div class="createdby-section">
Created by
<a href="https://github.com/ImOnlyYisus">ImOnlyYisus</a>
</div>
</div>
<!-- ImOnlyYisus btn end -->
<div class="button-container">
<button class="mjmanas54-button-1 button-def">Hover Me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/mjmanas54">mjmanas</a>
</div>
</div>
<div class="button-container">
<button class="akashyap25-button-1" role="button"><span class="text">Hover Me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/akashyap25">Anurag</a>
</div>
</div>
<!-- raulwwq0 btn start -->
<div class="button-container">
<button class="raulwwq0-button-1"><span>Hover me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/raulwwq0">raulwwq0</a>
</div>
</div>
<!-- raulwwq0 btn end -->
<!-- Mayank1170 btn start -->
<div class="button-container">
<button class="Mayank1170-button-1"><span>Hover me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Mayank1170">Mayank1170</a>
</div>
</div>
<!-- Mayank1170 btn end -->
<div class="button-container">
<button class="Srishti-btn-1"><span>Hover me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Srishtihere">Srishti Majumder</a>
</div>
</div>
<!-- Ola's btn start -->
<div class="button-container">
<button class="Olamilekan-button-1">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Keith-Web3">Olamilekan</a>
</div>
</div>
<!-- Ola's btn end -->
<!-- cypher's btn start -->
<div class="button-container">
<button class="cypher-btn-1">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/cypher1002">cypher 1002</a>
</div>
</div>
<!-- cypher's btn end -->
<!-- *Swaroop's btn start -->
<div class="button-container">
<span class="noob-button-1-span">
<img src="https://i.imgur.com/KDVctd4.png" alt=" " class="noob-button-1-img">
<button class="noob-button-1">hover me</button>
</span>
<div class="createdby-section">
Created by
<a href="https://github.com/swarooprajwal">Swaroop</a>
</div>
</div>
<!-- *Swaroop's btn end -->
<!-- blurry brush's btn start -->
<div class="button-container">
<button class="blurry-brush-button-1"> Hover me </button>
<div class="createdby-section">
Created by
<a href="https://github.com/Blurry-Brush">Blurry Brush</a>
</div>
</div>
<!-- blurry brush's btn end -->
<!-- harsh's btn start -->
<div class="button-container">
<button class="harsh-btn-1"> <span>Hover me </span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/HarshDDalwadi">Harsh_DD</a>
</div>
</div>
<!-- harsh's btn end -->
<!-- Ankush Roy's btn start -->
<div class="button-container">
<button class="ankush-btn-1">
<span> Hover Button </span>
</button>
<div class="createdby-section">
Created by
<a href="https://github.com/ankushroy25">Ankush Roy</a>
</div>
</div>
<!-- Ankush Roy's btn end -->
<!-- davidbru's btn start -->
<div class="button-container">
<button class="davidbru-btn-1">
<svg width="180px" height="60px" viewBox="0 0 180 60" class="border">
<polyline points="179,1 179,59 1,59 1,1 179,1" class="bg-line" />
<polyline points="179,1 179,59 1,59 1,1 179,1" class="hl-line" />
</svg>
<span>HOVER ME</span>
</button>
<div class="createdby-section">
Created by
<a href="https://github.com/davidbru">davidbru</a>
</div>
</div>
<!-- davidbru's btn end -->
<!--ANIKET SINHA's btn start -->
<div class="button-container">
<button class="aniket-btn-1"> Hover me </button>
<div class="createdby-section">
Created by
<a href="https://github.com/aniketsinha2002">Aniket Sinha</a>
</div>
</div>
<!-- ANIKET SINHA's btn end -->
<!-- Harsh Jain's btn start -->
<div class="button-container">
<button class="harsh-jain-button-1"> <span>Hover me </span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/HarshJa1n">Harsh Jain</a>
</div>
</div>
<!-- Harsh Jain's btn end -->
<!-- Harsh Jain's btn 2 start -->
<div class="button-container">
<div class="harsh-jain-button-2">
<div class="mouth">
<div id="mouth-left" class="mouth-brace"></div>
<div id="mouth-right" class="mouth-brace"></div>
</div>
<div class="eyeballs"></div>
<div class="nose"></div>
<div class="eyebrow"></div>
</div>
<div class="createdby-section">
Created by
<a href="https://github.com/HarshJa1n">Harsh Jain</a>
</div>
</div>
<!-- Harsh Jain's btn 2 end -->
<!-- Nitish's btn start -->
<div class="button-container">
<button class="Nitish-btn-26"><span>Button</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Singh26Nitish">Nitish Singh</a>
</div>
</div>
<!-- Nitish's btn end -->
<!-- Thiago's btn start -->
<div class="button-container">
<button class="tjbass2021-button-1"><span>Button</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/tjbass2021">Thiago Souza</a>
</div>
</div>
<!-- Thiago's btn end -->
<!-- cyphers 2nd button start -->
<div class="button-container">
<button class="cypher-2-btn"> Hover me </button>
<div class="createdby-section">
Created by
<a href="https://github.com/cypher1002">cypher1002</a>
</div>
</div>
<!-- cyphers 2nd button end -->
<!-- kkartik07's button start -->
<div class="button-container">
<button class="kkartik07-btn-1"> Hover me </button>
<div class="createdby-section">
Created by
<a href="https://github.com/kkartik07">kkartik07</a>
</div>
</div>
<!-- kkartik07's button end -->
<!--Deepak Kumar btn start-->
<div class="button-container">
<button class="DeepakKumar-button-31"><span> Hover Me</span></button>
<div class="createdby-section">
Created by<a href="https://github.com/deepak0byte"> Deepak Kumar</a>
</div>
</div>
<!--Deepak Kumar btn end-->
<!-- Shridhar's button start -->
<div class="button-container">
<div class="shridhar-button-1">
<button class="shridhar-button-1-youtube">Yt</button>
<button class="shridhar-button-1-twitter">Tw</button>
</div>
<div class="createdby-section">
Created by
<a href="https://github.com/Shridhar-dev">Shridhar Kamat</a>
</div>
</div>
<!-- Shridhar's button end -->
<!-- handaranup 1st button starts -->
<div class="button-container">
<!-- add your buttons here, eg.-->
<button class="haldaranup-btn-1"><span>Hello World</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/haldaranup">Anup Haldar</a>
</div>
</div>
<!-- haldaranup 1st button ends -->
<!-- shiningshani-button-1 starts -->
<div class="button-container">
<button class="shiningshani-button-1">Hover Me!</button>
<div class="createdby-section">Created by <a href="https://github.com/shiningshani">Shani</a></div>
</div>
<!-- shiningshani-button-1 ends -->
<!-- Nitish's btn start -->
<div class="button-container">
<button class="Nitish-btn-2"><span>Button</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Singh26Nitish">Nitish Singh</a>
</div>
</div>
<!-- Nitish's btn end -->
<!-- Sumit1 btn start -->
<div class="button-container">
<button class="Sumit-14Singh-btn-1"><span>Button</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Sumit-14Singh">Sumit</a>
</div>
</div>
<!-- Sumit1 btn end -->
<!-- Sumit2 btn start -->
<div class="button-container">
<button class="Sumit-14Singh-btn-2"><span>Button</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Sumit-14Singh">Sumit</a>
</div>
</div>
<!-- Sumit2 btn end -->
<!-- Sumit3 btn start -->
<div class="button-container">
<button class="Sumit-14Singh-btn-3"><span>Sumit</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Sumit-14Singh">Sumit</a>
</div>
</div>
<!-- Sumit3 btn end -->
<!-- dilshad360 button start -->
<div class="button-container">
<button class="dilshad360-btn-1"><span>Hover Me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/dilshad360">dilshad360</a>
</div>
</div>
<!-- dilshad360 button end -->
<!--Jasim Razi btn start-->
<div class="button-container">
<button class="Jasimrazi-btn-1"><span> Hover Me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/jasimrazi"> Jasim Razi</a>
</div>
</div>
<!--Jasim Razi btn end-->
<!-- cypher's btn-3 start -->
<div class="button-container">
<button class="cypher-btn-3">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/cypher1002">cypher 1002</a>
</div>
</div>
<!-- cyphers btn-3 end -->
<!-- Deepesh Sharma btn start-->
<div class="button-container ">
<button class="deepeshsharmaofficial-button-1"><span> Hover Me </span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/deepeshsharmaofficial"> Deepesh Sharma </a>
</div>
</div>
<!-- Deepesh Sharma btn end-->
<!-- Arvind0302 button start -->
<div class="button-container">
<button class="arvind0302-btn-1"><span>Hover Me</span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/Arvind0302">Arvind0302</a>
</div>
</div>
<!-- Arvind0302 button end -->
<!-- radzhiv's btn start -->
<div class="button-container">
<button class="radzhiv-btn-1">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/radzhiv25">radzhiv25</a>
</div>
</div>
<!-- radzhiv's btn end -->
<!-- shivanshi btn start -->
<div class="button-container">
<button class="shivanshi-s-btn-1">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/shivanshi-s">shivanshi-s</a>
</div>
</div>
<!-- shivanshi btn end -->
<!-- avishaan24-btn-1 start -->
<div class="button-container">
<!-- add your buttons here, eg.-->
<button class="avishaan24-btn-1"> Hover Me !
</button>
<div class="createdby-section">
Created by
<a href="https://github.com/avishaan24/">avishaan24</a>
</div>
</div>
<!-- avishaan24-btn-1 end -->
<!-- Aditya's btn start -->
<div class="button-container">
<button class="aditya-btn-1">Hover Me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/Aditya-ahirwar">Aditya-ahirwar</a>
</div>
</div>
<!-- Aditya's btn end -->
<!-- Gaurav Sharma's btn start-->
<div class="button-container ">
<button class="gauravsharmatheofficial-btn-1">
<svg class="gauravsharmatheofficial-btn-1-svg" width="180px" height="60px" viewBox="0 0 180 60">
<polyline points="179,1 179,59 1,59 1,1 179,1"/>
<polyline points="179,1 179,59 1,59 1,1 179,1"/>
</svg>
<span class="gauravsharmatheofficial-btn-1-span"> Hover Me </span></button>
<div class="createdby-section">
Created by
<a href="https://github.com/gauravsharmatheofficial">gauravsharmatheofficial</a>
</div>
</div>
<!-- Gaurav Sharma's btn end-->
<!-- getRicha-btn-1 start -->
<div class="button-container">
<button class="getRicha-btn-1">Hover Me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/getRicha">getRicha</a>
</div>
</div>
<!-- getRicha-btn-1 end -->
<!--0b51d14n217's btns-->
<div class="button-container">
<a class="arnav-btn-1" data-back="Hover Me" data-front="Hover Me"></a>
<div class="createdby-section">
Created by
<a href="https://github.com/0b51d14n217">0b51d14n217</a>
</div>
</div>
<!--0b51d14n217's btn-->
<!--lavesh's btn-->
<div class="button-container">
<a class="lavesh-btn-1" data-back="Hover Me" data-front="Hover Me">Hover me</a>
<div class="createdby-section">
Created by
<a href="https://github.com/laveshverma007">laveshverma007</a>
</div>
</div>
<!--lavesh's btn-->
<div class="button-container">
<a class="arnav-btn-2">HOVER ME</a>
<div class="createdby-section">
Created by
<a href="https://github.com/0b51d14n217">0b51d14n217</a>
</div>
</div>
<!--0b51d14n217's btns-->
<!-- radzhiv-btn-2 -->
<div class="button-container">
<button class="radzhiv-btn-2">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/radzhiv25">radzhiv25</a>
</div>
</div>
<!-- radzhiv's btn-->
<!-- Amit's button -->
<div class="button-container">
<button class="Amit-btn-1">Hover me</button>
<div class="createdby-section">
Created by
<a href="https://github.com/amthub">amthub</a>
</div>
</div>
<!-- Amit's btn-->
</div>
</main>
<footer class="footer-main">
<div class="footer-container">
<a href="/" class="footer-title">
<span class="ml-3 text-xl">CSS Buttons</span>
</a>
<p class="footer-copyright">© 2022 CSS Buttons —
<a href="https://designandcode.us/" class="text-gray-600 ml-1" rel="noopener noreferrer"
target="_blank">@designandcode</a>
</p>
<span class="socials-span">
<a href="https://github.com/Design-and-Code">
<svg fill="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2"
className="w-5 h-5" viewBox="0 0 24 24">
<path
d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
</svg>
</a>
<a href="https://twitter.com/DesignandCode3">
<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 href="https://www.instagram.com/designandcode.community/">
<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 href="https://www.linkedin.com/company/designandcode/">
<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>