initial commit

This commit is contained in:
2025-02-14 22:37:52 -05:00
commit df1c16aa50
14 changed files with 1276 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
document.addEventListener('DOMContentLoaded', function () {
const button = document.querySelector('#click-me');
if (button) {
button.addEventListener('click', function () {
alert('Button clicked!');
});
}
});