-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (42 loc) · 1.14 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
<!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="stylesheet" href="styles.css" />
<script defer src="app.js"></script>
<title>Yoda Speak</title>
</head>
<body>
<nav>
<h1>Yoda Speak Translator</h1>
</nav>
<div class="translation-div">
<textarea
name="txt-input"
id="input"
class="input"
placeholder="Enter your message to be translated here."
></textarea>
<button id="btn-translate">Translate</button>
<textarea
name="txt-output"
id="output"
class="output"
disabled
placeholder="Translated text will appear here."
></textarea>
</div>
<!-- =============== Footer Section =============== -->
<footer class="footer">
<div class="footer-links">
<ul>
<li><a href="#">GitHub</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</div>
</footer>
</body>
</html>