-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 1.47 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
50
51
52
53
54
55
<!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="translation.css">
<style>
textarea {
background-color:antiquewhite ;
border: none;
margin: 1rem;
padding: 3.5rem;
font-family: 'Kalam', cursive;
width: 50%;
font-size: large;
justify-content: center;
}
#output {
background-color:antiquewhite ;
border: none;
margin: 1rem;
padding: 2rem;
font-family: 'Kalam', cursive;
width: 50%;
font-size: large;
justify-content: center;
}
</style>
</head>
<body> <h1>
Banana Talk (Translation)
</h1>
<main>
<textarea id="txt-input"
placeholder="write here ! and click translate button you will see your message convert to banana language"></textarea>
<button id="btn-translate">TRANSLATE</button>
<div class="heading">Translation will come here 👇</div>
<div id="output" style="padding: 80px; font-size: large;"></div>
</main>
<footer>
<div style="font-size: x-large;">"About"</div>
<p>Always wanted to speak Minion? This will Convert from English to Minion speak.</p>
</footer>
<script src="app.js" type="text/javascript"></script>
</body>
</html>