Online JavaScript Compiler <!DOCTYPE html> <html> <body> <p id="message">Hello!</p> <button onclick="changeText()">Click Me</button> <script> function changeText() { const msg = document.getElementById("message"); msg.innerHTML = "You clicked the button!"; msg.style.color = "blue"; } </script> </body> </html>