<!DOCTYPE html> <html> <head> <title>Sayfa başlığı</title> </head> <body> <h2>JavaScript mesaj kutusu örneği</h2> <button onclick="merhaba()">Buraya Tıkla</button> <script> function merhaba(){ alert('Merhaba JS!'); } </script> </body> </html>
<h2>JavaScript mesaj kutusu örneği</h2> <button onclick="merhaba()">Buraya Tıkla</button> <script> function merhaba(){ alert('Merhaba JS!'); } </script>