You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 898B

5 years ago
1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width">
  7. <title>Wort matcher</title>
  8. <link rel="stylesheet" href="style.css">
  9. <!--[if lt IE 9]>
  10. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  11. <![endif]-->
  12. </head>
  13. <body>
  14. <h1>Speech Recognition</h1>
  15. <p id=info>Press the button to activate microphone.</p>
  16. <p id=query hidden>query</p>
  17. <button>Start new test</button>
  18. <button id="speechBtn">Speech</button>
  19. <button onclick="getElementById('query').innerHTML = 'changed'">Change query</button>
  20. <div>
  21. <p class="server">Server offline</p>
  22. <p class="output" style="font-style: italic;">... erkannte worte ...</p>
  23. </div>
  24. <script src="ws-client.js"></script>
  25. </body>
  26. </html>