File tree 1 file changed +42
-0
lines changed
1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ <!-- Coding By CodingNepal - youtube.com/codingnepal -->
3
+ <html lang="en" dir="ltr">
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>Language Translator | CodingNepal</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
+ <!-- Font Awesome CDN Link for Icons -->
10
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
11
+ </head>
12
+ <body>
13
+ <div class="container">
14
+ <div class="wrapper">
15
+ <div class="text-input">
16
+ <textarea spellcheck="false" class="from-text" placeholder="Enter text"></textarea>
17
+ <textarea spellcheck="false" readonly disabled class="to-text" placeholder="Translation"></textarea>
18
+ </div>
19
+ <ul class="controls">
20
+ <li class="row from">
21
+ <div class="icons">
22
+ <i id="from" class="fas fa-volume-up"></i>
23
+ <i id="from" class="fas fa-copy"></i>
24
+ </div>
25
+ <select></select>
26
+ </li>
27
+ <li class="exchange"><i class="fas fa-exchange-alt"></i></li>
28
+ <li class="row to">
29
+ <select></select>
30
+ <div class="icons">
31
+ <i id="to" class="fas fa-volume-up"></i>
32
+ <i id="to" class="fas fa-copy"></i>
33
+ </div>
34
+ </li>
35
+ </ul>
36
+ </div>
37
+ <button>Translate Text</button>
38
+ </div>
39
+ <script src="js/countries.js"></script>
40
+ <script src="js/script.js"></script>
41
+ </body>
42
+ </html>
You can’t perform that action at this time.
0 commit comments