// snippet that copies the html for my button(s)
function copyButtonSneexy() {
navigator.clipboard.writeText(
'
'
);
alert("button html copied!");
}
function copyButtonSynthDownload() {
navigator.clipboard.writeText(
'
'
);
alert("button html copied!");
}