-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (25 loc) · 818 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (25 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!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>Voice Recognition</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>Voice Recognition</h1>
<p>Press the button then say the phrase to test the recognition.</p>
<button>Start new test</button>
<div>
<p class="phrase">Phrase...</p>
<p class="result">Good or Bad?</p>
<p class="output">...diagnostic messages</p>
</div>
<script src="script.js"></script>
</body>
</html>