-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (24 loc) · 975 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
<!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" href="style.css">
</head>
<body>
<header class="header">
Minion Speaks
</header>
<img class="img" src="images\image.png" alt="minion-image">
<h1 class="head">Welcome to Banana Speak</h1>
<textarea id="txt-input" placeholder="Type here what you want to translate"></textarea>
<button type="button" id="btn-translate">Translate!</button>
<div class="head">ouput will come here 👇 </div>
<div id="txt-output"></div>
<footer class="footer">Convert from English to the language of the Minions (sometimes called "Minionese" or the
"Banana language") from the Despicable Me series </footer>
<script src="app.js" type="text/javascript"></script>
</body>
</html>