File size: 529 Bytes
1598a81
 
 
 
 
60aa1e4
1598a81
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Voice to Text Demo : Using Javascript</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <h1>Voice to Text Demo : Claim Genius</h1>
    <button id="startBtn">Start</button>
    <button id="stopBtn" disabled>Stop</button>
    <br>
    <br>
    <textarea id="transcript" rows="10" cols="50"></textarea>
    <script src="script.js"></script>
</body>
</html>