-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVoiceToText.html
More file actions
37 lines (34 loc) · 1.51 KB
/
VoiceToText.html
File metadata and controls
37 lines (34 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Speech to text conversion using JavaScript</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Shadows+Into+Light" rel="stylesheet">
<script type="text/javascript" src="chatbot.js"></script>
<link rel="stylesheet" href="VoiceToText.css">
</head>
<style>
img{
position: left 100%
}
</style>
<body></body>
<div class="container">
<center><div class="app">
<div class="input-single">
<input id="note-textarea" placeholder="Send Message..." autocomplete="off">
</div>
<!-- <button id="start-record-btn" title="Start Recording">Start Recognition</button>
<button id="pause-record-btn" title="Pause Recording">Pause Recognition</button> -->
<p id="response" class = 'Responder'></p>
</div> <center>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="VoiceToText.js"></script>
</body>
</html>