-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (28 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>Valyrian translator</title>
</head>
<body>
<header>
<h1 class="title-txt">Valyrian Translator</h1>
</header>
<main>
<img src="images/translate.svg" alt="translate-img" class="translate-img">
<section class="section-process">
<textarea id="input" placeholder="enter the text to be translated"></textarea>
<button id="translate-btn">Translate</button>
<h2>Output will go here 👇</h2>
<div id="output"></div>
</section>
</main>
<footer class="footer">
<h1>About</h1>
<p> Are you a fan of Game of Thrones? Then you would know Valyrian , do you know it's an actual language, yes it is.For the TV series, linguist David J. Peterson created the High Valyrian language. Use this translator to convert your text from English to Valyrian</p>
</footer>
<script src="/app.js"></script>
</body>
</html>