File size: 609 Bytes
e92d0a6
 
2c3130c
 
 
 
 
 
 
 
070aca1
 
 
 
2c3130c
 
 
 
070aca1
2c3130c
e92d0a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>My Translator</title>
    <link rel="stylesheet" href="style.css" />
</head>
<body>
    <div class="card">
        <input class="input" id="text" placeholder="Enter text to translate...">
        <select id="from"></select>
        <select id="to"></select>
        <button class="button" id="translate">Translate</button>
    </div>
    <div class="card" id="result">
        Translation result will appear here...
    </div>
    <script src="script.js"></script>
</body>
</html>