Guest User

Untitled

a guest
Apr 28th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title> Text to speech</title>
  6. <script type="text/javascript" src="https://code.responsivevoice.org/responsivevoice.js"> </script>
  7.  
  8. <style type="text/css">
  9.  
  10. h1 {
  11. color:green;
  12. font-size: 50px;
  13. }
  14. #hack {
  15. border: 3px solid black;
  16. font-size: 30px;
  17. }
  18.  
  19. #sachin {
  20. border: 3px solid black;
  21. font-size: 30px;
  22. color: blue;
  23. }
  24.  
  25. #sachin:hover{
  26. color: red;
  27. }
  28. </style>
  29.  
  30. </head>
  31. <body onload="myfun()">
  32.  
  33.  
  34.  
  35. <center>
  36. <h1> Text To Speech App</h1>
  37. <textarea cols="40" rows="10" id="hack" required="required" onkeypress="myspeech()" onkeydown="myspeech2()" onclick="myspeech3()"> </textarea> <br>
  38. <button onclick="dinkar()" id="sachin"> Speak</button>
  39. <script type="text/javascript">
  40.  
  41. function dinkar(){
  42. var text = document.getElementById('hack').value;
  43. responsiveVoice.speak(text, "Hindi Female");
  44. window.open("https://technicaldestination.blogspot.com");
  45.  
  46.  
  47. }
  48. </script>
  49.  
  50. </center>
  51. </body>
  52.  
  53.  
  54. </html>
Add Comment
Please, Sign In to add comment