|
12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width">
-
- <title>Wort matcher</title>
-
- <link rel="stylesheet" href="style.css">
- <!--[if lt IE 9]>
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- </head>
-
- <body>
- <h1>Digitaler Demenztest</h1>
- <p id=info>Press the button to activate microphone.</p>
-
- <button>Start new test</button>
- <button id="speechBtn">Test Button</button>
-
- <div>
- <p class="server">Server offline</p>
- <p class="quest">Question: </p>
- <p class="output" style="font-style: italic;">Erkannte worte ...</p>
- </div>
-
- <script src="ws-client.js"></script>
- </body>
- </html>
|