-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banana speak</title>
<style>
body{
margin: auto;
justify-content: center;
align-items: center;
}
textarea{
width: 80%;
height: 20vh;
display: block;
margin: 1rem;
padding: 1rem;
}
#Output{
border: 2px solid black;
height: 10vh;
width: 80%;
margin: 1rem;
padding: 1rem;
}
h1{
text-align: center;
}
.container-center{
margin: auto;
width: 50%;
border: 3px solid green;
padding: 10px;
}
#btn-translate{
text-align: center;
}
</style>
</head>
<body>
<h1>
MINIONS Translator
</h1>
<div class="container-center">
<textarea id="txt-input"
placeholder="put your sentence in english here and we will convert it into banana"></textarea>
<button id="btn-translate">Translate</button>
<div style="font-size: large;"> OUTPUT Will Create Here👇</div>
<div id="Output" placeholder="In Minions Speak.....>
</div>
</div>
<script src="app.js" type="text/javascript"></script>
<footer>
<div id="footer"></div>
</footer>
</body>
</html>