-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.43 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.43 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Banana Talk | Web App </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kalam:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div class="top">
<h1 class="top-heading"> Banana Talk</h1>
</div>
<div class="main">
<div class="inner">
<textarea rows="5" col="25" class="text_field" placeholder="Put your message here where you want to convert into banana language"></textarea>
<br><button class="submit_button" name="button"> Translate to banana</button>
</div>
<div class="output">
<span class="output-heading"> Translated text will come here 👇</span>
<div class="output-result"></div>
</div>
</div>
<footer class="footer">
<h1 class="footer-heading"> About</h1>
<p>Are you a fan of minions? Did you know that the gibberish they say is an actual language. Use the translator to convert your text from English to Minion speak or Banana language.</p>
</footer>
<script src="index.js" ></script>
</body>
</html>