-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Banana Translator!</title>
</head>
<body>
<nav>
<img src="img/minions_PNG66.png" alt="">
</nav>
<header>
<h1>Translate To Banana Language</h1>
</header>
<div>
<p> Type Your English text Here 👇 </p>
<textarea id="txt-input" placeholder="Type your text here..."></textarea>
</div>
<button id="btn-trans">Translate</button>
<div>
<p>Translated Text 👇</p>
<textarea id="txt-output"></textarea>
</div>
<footer>
<p>Darshil Dixit | 2021</p>
<div>
<a href=" https://www.linkedin.com/in/darshildixit/" target="_blank"> <img src="img/linkedin.png"
alt=""></a>
<a href=" https://github.com/DarshilDixit" target="_blank"> <img src="img/github.png" alt=""></a>
<a href="https://twitter.com/darshil_dixit" target="_blank"><img src="img/twitter.png" alt=""></a>
</div>
</footer>
<script src="app.js" type="text/javascript"></script>
</body>
</html>