forked from 9jaswag/speechrec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 862 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Speech Recognition</title>
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="/manifest.json">
<!-- <link href="https://fonts.googleapis.com/css?family=Kaushan+Script" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css?family=Shadows+Into+Light" rel="stylesheet">
<script src="https://use.fontawesome.com/f061fecdbc.js"></script>
</head>
<body>
<div class="container">
<div class="text-box" contenteditable="true"></div>
<i class="fa fa-microphone"></i>
<select id="voiceSelect"></select>
</div>
<audio class="sound" src="chime.mp3"></audio>
<script src="main.js" async></script>
</body>
</html>