forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="styles.css">
<title>Language Translator</title>
</head>
<body>
<div class="container">
<div class="translator_property">
<ul class="nav-item">
<li>
<select>
</select>
</li>
<li class="bx bx-transfer"></li>
<li>
<select>
</select>
</li>
</ul>
<div class="write_box">
<div class="Property_from">
<textarea maxlength="5000" class="fromText" placeholder="write down"></textarea>
<div class="icons">
<sapn class="bx bx-volume-full from"></sapn>
<div class="code_length">0/5,000</div>
</div>
</div>
<div class="Property_trans">
<textarea class="toTranslate" disabled></textarea>
<div class="icons">
<sapn class="bx bx-volume-full to"></sapn>
<span class="bx bx-copy"></span>
</div>
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</html>