-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10.html
More file actions
43 lines (36 loc) · 1.25 KB
/
Copy path10.html
File metadata and controls
43 lines (36 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Language Translator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="translator-container">
<h1>Language Translator</h1>
<textarea id="inputText" placeholder="Enter text to translate..."></textarea>
<div class="select-container">
<select id="sourceLang">
<option value="en">English</option>
<option value="es">Spanish</option>
<option value="fr">French</option>
<option value="de">German</option>
<!-- Add more as needed -->
</select>
<span>→</span>
<select id="targetLang">
<option value="es">Spanish</option>
<option value="en">English</option>
<option value="fr">French</option>
<option value="de">German</option>
</select>
</div>
<button onclick="translateText()">Translate</button>
<div class="output">
<h2>Translated Text:</h2>
<p id="outputText"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>