-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (25 loc) · 1.22 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
<!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">
<title>vulcanTrans</title>
<link href="styles.css" rel="stylesheet">
<link rel="shortcut icon" href="./images/vulcan-favicon.png" type="image/x-icon">
</head>
<body>
<nav class="navigation">
<div>vulcanTrans</div>
</nav>
<textarea id="text-input" placeholder="Enter your English message here!"></textarea>
<button id="button-translate">Translate</button>
<div id="output">Translation will be here👇</div>
<textarea id="text-output" placeholder="Translation with emoji will be shown here!"></textarea>
<footer class="footer">
<div style="font-weight: bolder; font-size: 1.2rem;">About</div>
<p>Are you a fan of Star Wars? Did you know that the gibberish they say is an actual language. Vulcans are a fictional extraterrestrial humanoid species in the Star Trek franchise who originate from the planet Vulcan. Use the translator to convert your text from English to Vulcan Language.</p>
</footer>
<script src="app.js" type="text/javascript"></script>
</body>
</html>