-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (58 loc) · 1.41 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
<!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" />
<link
rel="icon"
type="image/png"
href="mininon.png"
/>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Banana Speak | Translator</title>
</head>
<body>
<section class="header-style">
<header>
<h2 style="color: white;">Banana Translator</h2>
</header>
</section>
<section class="container datasection">
<textarea
name="textarea"
placeholder="Enter Text"
id="userinput"
cols="40"
rows="2"
></textarea>
<br />
<br />
<button id="clickme" class="btn">Translate</button>
<br />
<br />
<div>Your Text will be displayed below</div>
<br />
<div>
<textarea
name="textarea"
placeholder="Translated text"
id="output"
cols="40"
rows="2"
></textarea>
</div>
</section>
<div class="footer">
<p style="color: white;">
this is simple minions Translator webapp
</p>
</div>
<script src="app.js"></script>
</body>
</html>