5 hizmet ayı
<!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>
<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>