This repository was archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
44 lines (27 loc) · 1.22 KB
/
about.html
File metadata and controls
44 lines (27 loc) · 1.22 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
<html>
<head>
<title>Speech Navigation</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="/css/common.css">
</head>
<body class="about">
<main>
<nav>
<ul>
<li><a href="/" title="Home">Home</a></li>
<li><a href="/about" title="About">About</a></li>
<li><a href="/contact" title="Contact">Contact</a></li>
</ul>
</nav>
<button id="rec"><object class="mic" type="image/svg+xml" data="/img/microphone.svg"></object></button>
<input id="input" type="text">
<p>Click the microphone icon and say <i>"Click on home"</i></p>
<p class="hint">Hint: It also works with other synonyms"</p>
<h1>About</h1>
<!--<br>Response<br> <textarea id="response" cols="40" rows="20"></textarea>-->
</main>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/js/apikeys.js"></script>
<script src="/js/speech.js"></script>
</body>
</html>