32 lines
898 B
HTML
32 lines
898 B
HTML
<!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>Speech Recognition</h1>
|
|
<p id=info>Press the button to activate microphone.</p>
|
|
<p id=query hidden>query</p>
|
|
|
|
<button>Start new test</button>
|
|
<button id="speechBtn">Speech</button>
|
|
<button onclick="getElementById('query').innerHTML = 'changed'">Change query</button>
|
|
|
|
<div>
|
|
<p class="server">Server offline</p>
|
|
<p class="output" style="font-style: italic;">... erkannte worte ...</p>
|
|
</div>
|
|
|
|
<script src="ws-client.js"></script>
|
|
</body>
|
|
</html> |