-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (25 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>Banana Speak</title>
</head>
<body>
<header>
<h1>Banana Talk</h1>
</header>
<main>
<textarea placeholder="Enter the text to be translated" id="txt-input"></textarea>
<button id="btn-translate">Translate</button>
<p style="font-size: 1.5rem;text-align: center; font-weight: bold;">Output will go here 👇</p>
<div id="output"></div>
</main>
<footer>
<h2>About Banana Talk</h2>
<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>
</footer>
<script src="/app.js" type="text/javascript"></script>
</body>
</html>