-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.42 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
<!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="CSS/style.css">
<title>Home | Dothraki Transaltor</title>
</head>
<body>
<nav>
<div>Dothraki Translator</div>
</nav>
<main>
<div class="spacing"></div>
<div class="spacing spacing-content">
<textarea name="input" id="input" placeholder="Enter you text here to translate into Dothraki language"></textarea>
<button id="button">Translate</button>
<div>Your translated text will be displayed here 👇</div>
<div id="output" style="border: 1px solid black; height: 5rem;"></div>
</div>
<div class="spacing"></div>
</main>
<footer>
<div></div>
<div id="footer-div">
<div id="about">About</div>
<div id="content">The Dothraki language is a constructed fictional language in George R. R. Martin's fantasy novel series A Song of Ice and Fire, where it is spoken by the Dothraki, the indigenous inhabitants of the Dothraki Sea. The language was developed for the TV series by the linguist David J. Peterson based on the Dothraki words and phrases in Martin's novels.</div>
</div>
<div></div>
</footer>
<script src="JS/script.js"></script>
</body>
</html>