-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodealpha_translator html
More file actions
39 lines (31 loc) · 1.06 KB
/
Copy pathcodealpha_translator html
File metadata and controls
39 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Language Translator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Language Translator</h1>
<form>
<label for="inputText">Your Text</label>
<textarea id="inputText" name="inputText" placeholder="Enter text here..."></textarea>
<label for="source">FROM:</label>
<select id="source">
<option value="en">English</option>
<option value="ta">Tamil</option>
<option value="hi">Hindi</option>
</select>
<label for="target">TO:</label>
<select id="target">
<option value="ta">Tamil</option>
<option value="en">English</option>
<option value="hi">Hindi</option>
</select>
</form>
<button type="button" onclick="translateText()">Translate</button>
<textarea id="outputText" placeholder="Translated text..." ></textarea>
<button type="button" onclick="copyText()">Copy</button>
<script src="script.js"></script>
</body>
</html>