-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (39 loc) · 1.52 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="heading">
<h1 style="text-align: center;">Native Speech Recognition</h1>
</div>
<div class="container">
<div class="keywords">
<div class="keywords-inner">
<h3>Special Words</h3>
<span class="keyword">Dog</span>
<span class="keyword">Love</span>
<span class="keyword">Unicorn</span>
<span class="keyword">Cat</span>
<span class="keyword">Stop Recording</span>
<span class="keyword">Clear All</span>
</div>
</div>
<div class="speech-container">
<div class="text_canvas" spellcheck="false"></div>
<button class="mic" onclick="startRecording()"><img alt="Mic Icon" src="./assets/microphone.png" /></button>
</div>
<div class="icons">
</div>
</div>
<script src="./script.js" async defer></script>
</body>
</html>