Spaces:
Sleeping
Sleeping
File size: 559 Bytes
3145b26 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Biriyani Hub</title>
</head>
<body>
<h1>Welcome to Biriyani Hub</h1>
<script>
function speakWelcome() {
let speech = new SpeechSynthesisUtterance("Welcome to Biriyani Hub!");
speech.lang = "en-US";
speech.rate = 1;
window.speechSynthesis.speak(speech);
}
window.onload = speakWelcome;
</script>
</body>
</html>
|