site/script.js

10 lines
520 B
JavaScript
Raw Normal View History

2024-09-28 01:25:39 -05:00
// snippet that copies the html for my button(s)
2024-09-25 20:21:07 -05:00
function copyButtonRegular() {
2024-12-04 11:15:38 -06:00
navigator.clipboard.writeText ('<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy.png" alt="Sneexy" title="Sneexy"></a>');
2024-09-25 20:21:07 -05:00
alert("button html copied!");
}
2024-09-28 01:25:39 -05:00
2024-09-25 20:21:07 -05:00
function copyButtonCatppuccin() {
2024-12-04 11:15:38 -06:00
navigator.clipboard.writeText ('<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy_cat.png" alt="Sneexy" title="Sneexy"></a>');
2024-09-25 20:21:07 -05:00
alert("button html copied!");
}