<!DOCTYPE html> <html> <head> <title>Button Click Example</title> <script> function showMessage() { alert("Hello foobar"); } </script> </head> <body> <button onclick="showMessage()">Click Me</button> </body> </html>
<!DOCTYPE html> <html> <head> <title>Button Click Example</title> <script> function showMessage() { alert("Hello foobar"); } </script> </head> <body> <button onclick="showMessage()">Click Me</button> </body> </html>