-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (37 loc) · 972 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<head>
<style>
#Box {
height: 300px;
width: 300px;
}
#Box2 {
height: 300px;
width: 300px;
}
#maincont {
text-align: center;
}
button {
padding: 1%;
}
</style>
</head>
<body>
<div id="maincont">
<label for="lang">Please select a Lang</label>
<select name="lang" id="Langs" onchange="getTheValu()"></select>
<br>
<br>
<textarea id="Box" rows="10" cols="50">
</textarea>
<textarea id="Box2" rows="10" cols="50">
</textarea>
<br>
<button id="button" onclick="handleTrigger()"></button>
<button onclick="getthevalu()">translate</button>
<button onclick="textToAudio()">Speak out</button>
</div>
</body>
<script src="main.js"></script>
<script src="SpeechRecognition.js"></script>
<script src="peechSynthesis.js"></script>