-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.27 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
<!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>Valyrian Translate</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="background-image"></div>
<div class="content">
<nav>
<div style="font-size: 2rem; padding: 1rem;">
<h3>Speak Valyrian</h3>
</div>
</nav>
<main>
<textarea id="txt-input" placeholder="Put your sentence in English here and we will conver it to Valyrian language!!"></textarea>
<button id="btn-translate">Translate To Valyrian</button>
<h3>Translation will come here 👇</h3>
<div id="output" style="padding: 1rem; font-size: large;"></div>
</main>
<footer>
<div style="font-size: x-large;">About</div>
<p>Are you a fan of Game Of Thrones? Did you know that the language Queen Daenerys Targaryen speaks is an actual language. Use the translator
to convert your text from English to Valyrian.</p>
</footer>
<script src="/app.js" type="text/javascript"></script>
</div>
</body>
</html>