site/button.js
Ruben 5f36cc80ed
All checks were successful
/ build (push) Successful in 32s
add an accessibility menu
2025-04-09 13:51:07 -05:00

14 lines
No EOL
531 B
JavaScript

// snippet that copies the html for my button(s)
function copyButtonSneexy() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy.svg" alt="Sneexy"></a>'
);
alert("button html copied!");
}
function copyButtonSynthDownload() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/synth.download.svg" alt="Synth.Download!"></a>'
);
alert("button html copied!");
}