-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 887 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
<!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>Minion Translation</title>
<link href="/style.css" rel="stylesheet">
</head>
<body>
<nav>
<h1>Banana Speak!</h1>
</nav>
<textarea id="translate-input" placeholder="Type text you want to convert to banana speak"></textarea>
<button id="translate-btn">translate to banana</button>
<div style="text-align: center;">Translated text will appear here 👇</div>
<div id="translate-output"></div>
<footer>
<header class="ending-text">This was a fun app created by me to translate text to minion language, the language minions blabber!</header>
</footer>
<script type="text/javascript"src="app.js"></script>
</body>
</html>