site/script.js

10 lines
528 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() {
navigator.clipboard.writeText ('<a href="https://sneexy.pages.gay"><img src="https://sneexy.pages.gay/assets/buttons/sneexy.png" alt="Sneexy" title="Sneexy"></a>');
alert("button html copied!");
}
2024-09-28 01:25:39 -05:00
2024-09-25 20:21:07 -05:00
function copyButtonCatppuccin() {
navigator.clipboard.writeText ('<a href="https://sneexy.pages.gay"><img src="https://sneexy.pages.gay/assets/buttons/sneexy_cat.png" alt="Sneexy" title="Sneexy"></a>');
alert("button html copied!");
}