-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (35 loc) · 1.13 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.13 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instant Translator</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div>
<label for="cars">Input Language</label>
<select>
<option value="English">English</option>
<option value="Spanish">Spanish</option>
<option value="Hindi">Hindi</option>
<option value="French">French</option>
</select>
<br>
<label for="cars">Translate to</label>
<select>
<option value="English">English</option>
<option value="Spanish">Spanish</option>
<option value="Hindi">Hindi</option>
<option value="French">French</option>
</select>
</div>
<div class = "voice-to-text">
<h1>Instant Translator</h1>
<textarea id="convert-text"></textarea>
<textarea id="response"></textarea>
</div>
<script type = "text/javascript" src="index.js"></script>
<script type = "text/javascript" src="countries.js"></script>
</body>
</html>