-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 1.11 KB
/
index.html
File metadata and controls
30 lines (24 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Translator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width ,initial-scale=1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body onload="loadLanguages();">
<div class="container">
<h1> Translator </h1>
<p>Please enter a word and select languages to from language to what language to be translated the desired input.</p>
<div class="inputWrapper">
<select id="from" onchange="translatePhrase();" width=150 style="width:150px" ></select>
<textarea type="text" cols="40" rows="5" onchange="translatePhrase();" id="fromPhrase"></textarea>
</div><!-- InputWrapper -->
<div class="inputWrapper">
<select id="to" onchange="translatePhrase();" width=150 style="width:150px" ></select>
<textarea type="text" cols="40" rows="5" id="toPhrase"></textarea>
</div><!-- InputWrapper -->
</div> <!-- end container -->
<script src="app.js"></script>
</body>
</html>