-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.7 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<title>Language Translator</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="text-input">
<textarea name="from" class="from-text" placeholder="Enter Text" id="from"></textarea>
<textarea name="to" class="to-text" id="to" readonly></textarea>
</div>
<ul class="controls">
<li class="row from">
<div class="icons">
<i id="from" class="fa-solid fa-volume-high"></i>
<i id="from" class="fa-solid fa-copy"></i>
</div>
<select>
</select>
</li>
<li class="exchange"><i class="fa-solid fa-arrow-right-arrow-left"></i></li>
<li class="row to">
<select>
</select>
<div class="icons">
<i id="to" class="fa-solid fa-copy"></i>
<i id="to" class="fa-solid fa-volume-high"></i>
</div>
</li>
</ul>
</div>
<button>Translate Text</button>
</div>
<script src="languages.js"></script>
<script src="script.js"></script>
</body>
</html>