-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (51 loc) · 1.91 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
<!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>
textarea{
width:80%;
height:10vh;
display:block;
margin:1rem;
padding:1rem;
}
#output{
border:1px solid black;
height:10vh;
width:80%;
margin:1rem;
padding:1rem;
}
</style>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation"> <h1>Banana Talk</h1></nav>
<textarea id="txt-input" placeholder="put your sentence in English here and we will convert it to banana"></textarea>
<div>
<button id="btn-translate" class="container">Translate</button>
<div style="font-size: larger;">Output will come here 👇</div>
<!-- <div id="output"></div> -->
<textarea id="output" placeholder="Translation will appear in here."></textarea>
<script src="app.js" type="text/javascript"></script>
</div>
<footer class="footer">
<div class="footer-header">Social media presence</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/rutuja-chandgude-1b8a481b1/">Linkedin</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://github.com/rutuchandgude">Github</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.instagram.com/rutuchandgude/">Instagram</a>
</li>
<p>©2021 Rutuja Chandgude</p>
</ul>
</footer>
</body>
</html>