Speech Synthesis
HTML5 Speech
by Abid Shaik
HTML
<div id="SpeachText">
</div>
JavaScript
var Text2Speach = "Carolina takes to the road for the seventh time in ACC play and the 10th time overall this year on Wednesday, February 15th, at NC State. Game time at PNC Arena is 8 p.m.";
$("#SpeachText").html(Text2Speach);
var msg = new SpeechSynthesisUtterance(Text2Speach);
window.speechSynthesis.speak(msg);