-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.59 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
<!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">
<title>Banana Speak</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="banana-header">Banana Talk</div>
<main>
<textarea id="txt-input" placeholder="Put your sentence in English and we will convert it to banana"></textarea>
<button id="btn-translator">Translator</button>
<div style="font-size: larger;">Output will be here 👇</div>
<div id="output"></div>
<script src="app.js" type="text/javascript"></script>
</main>
<footer class="footer">
<div style="font-size: x-large;">About</div>
<p>Are you a fan of minions? Did you know that the gibberish they say is an actual language. Use the translator
to convert your text from English to Minion speak or Banana language.</p>
<br>
<div class="footer-header">Connect to me on social media</div>
<ul class="social-links list-non-bullet">
<li class="list-inline"> <a class="link" href="https://github.com/KHemanthRaju">Github</a></li>
<li class="list-inline"> <a class="link" href="https://twitter.com/khraju123">Twitter</a></li>
<li class="list-inline"> <a class="link" href="https://www.linkedin.com/in/hemanth-raju-aba388176/">LinkedIn</a></li>
<li class="list-inline"> <a class="link" href="https://rajuhemanth456.medium.com/" >Medium</a></li>
</ul>
</footer>
</body>
</html>