-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
36 lines (33 loc) · 1.02 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Translator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<input type="text" id="textToTranslate" placeholder="Text to translate">
<label for="sourceLang">Source Language:</label>
<select id="sourceLang">
<option value="auto">Auto</option>
<option value="en">English</option>
<option value="ja">Japanese</option>
<option value="zh">Chinese</option>
<!-- Add more languages as needed -->
</select>
<label for="targetLang">Target Language:</label>
<select id="targetLang">
<option value="en">English</option>
<option value="ja">Japanese</option>
<option value="zh">Chinese</option>
<!-- Add more languages as needed -->
</select>
<label for="source">Select Translation Source:</label>
<select id="source">
<option value="google">Google</option>
<option value="deepl">DeepL</option>
</select>
<button id="translateBtn">Translate</button>
</body>
<script src="popup.js"></script>
</html>