Cod الاوديو
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Message with Swan Lake</title>
</head>
<body>
<h1>Welcome!</h1>
<audio id="welcomeAudio" autoplay>
<source src="swan_lake.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script>
setTimeout(function(){
document.getElementById('welcomeAudio').pause();
}, 120000); // 2 minutes in milliseconds
</script>
</body>
</html>
Comments
Post a Comment