-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (38 loc) · 1.42 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
44
45
46
47
48
<!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">
<link rel="stylesheet" href="css/main.css">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="icons/vexa-32.png" type="image/x-icon">
<!-- og tags -->
<meta property="og:image" content="https://vexa.netlify.com/poster.jpg">
<meta name="theme-color" content="#0B7FDB" />
<meta property="og:description"
content="vexa is a simple javascript web app, which uses browser's speechRecognition API to give transcript and speechSynthesis API to output transcript as sound.">
<title>VEXA</title>
</head>
<body>
<main>
<div>
<img id="micImg" src="icons/vexa-192.png" alt="">
</div>
<div id="container">
<button id="talk">START</button>
<div class="checkbox">
<label><input id="speakerCheckbox" type="checkbox" value="" checked>Speaker-Output</label>
</div>
<article>
<p id="content">Click on START button and Speak Something to get its transcript. </p>
</article>
</div>
</main>
<footer>
<h5>VEXA:v0.1.7</h5>
<a href="https://github.com/vishalx360/vexa">Github</a>
</footer>
<script src="app.js"></script>
</body>
</html>