diff --git a/script.js b/script.js new file mode 100644 index 0000000..28ff3e4 --- /dev/null +++ b/script.js @@ -0,0 +1,7 @@ +// Select button +const button = document.getElementById("btn"); + +// Add click event +button.addEventListener("click", function() { + alert("Hello! Welcome to my profile 🚀"); +}); \ No newline at end of file