-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 1.95 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
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Language Translator</title>
<link rel="stylesheet" href="style.css">
<!-- Font Awesome CDN Link for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<div class="container">
<div class="wrapper">
<!-- Text input fields -->
<div class="text-input">
<textarea spellcheck="false" class="from-text" placeholder="Enter text"></textarea>
<textarea spellcheck="false" readonly class="to-text" placeholder="Translation"></textarea>
</div>
<!-- Language selection controls -->
<ul class="controls">
<li class="row from">
<div class="icons">
<i id="from-volume" class="fas fa-volume-up"></i>
<i id="from-copy" class="fas fa-copy"></i>
</div>
<select>
<option value="en-GB">English</option>
<option value="hi-IN">Hindi</option>
<option value="de-DE">German</option>
</select>
</li>
<li class="exchange">
<i class="fas fa-exchange-alt"></i>
</li>
<li class="row to">
<select>
<option value="en-GB">English</option>
<option value="hi-IN">Hindi</option>
<option value="de-DE">German</option>
</select>
<div class="icons">
<i id="to-volume" class="fas fa-volume-up"></i>
<i id="to-copy" class="fas fa-copy"></i>
</div>
</li>
</ul>
</div>
<!-- Translate button -->
<button>Translate Text</button>
</div>
<!-- JavaScript Files -->
<script src="country.js"></script>
<script src="script.js"></script>
</body>
</html>