Add script.js

This commit is contained in:
2026-03-27 15:43:18 +00:00
parent 725912d033
commit 1dfe644988

7
script.js Normal file
View File

@@ -0,0 +1,7 @@
// Select button
const button = document.getElementById("btn");
// Add click event
button.addEventListener("click", function() {
alert("Hello! Welcome to my profile 🚀");
});