-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (58 loc) · 2.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dothraki Translation</title>
<link rel="stylesheet" href="dist/styles/base.css">
<link rel="stylesheet" href="dist/styles/custom.css">
</head>
<body>
<header>
<div class="intro">
<h1 class="common-header heading-1 text-center mT-1 mB-1 font-weight-extrabold">Dothraki Translator</h1>
</div>
</header>
<section class="section section-dark">
<div class="wrapper">
<h4 class="common-header heading-4 font-weight-bold">A Little About Dothraki</h4>
<p class="common-description font-weight-regular mB-1">The Dothraki language is a
constructed fictional language in George R. R. Martin's fantasy novel series A Song of Ice and Fire and
its television adaptation Game of Thrones.</p>
<h4 class="common-header heading-4 font-weight-bold">About The App</h4>
<ul class="common-description">
<li>It's a English to Dothraki Translator.</li>
<li>Uses API from <a href="https://funtranslations.com"
class="link primary-link">funtranslations.com</a> &
API rate limit is 60 calls per day with distribution of 5 calls per hour</li>
</ul>
</div>
</section>
<section id="translation" class="section">
<div class="wrapper">
<form action="#" class="form">
<div class="row">
<div class="column-extra-large-5 column-large-5 column-small-12">
<div class="form-column">
<label for="input " class="form-label">Enter your input (in English)</label>
<textarea id="input" class="form-field form-textarea"></textarea>
</div>
</div>
<div
class="column-extra-large-2 column-large-2 column-small-12 flex flex-justify-center flex-align-center">
<button class="button primary-button width-100 mB-1" type="button"
id="translate-button">Translate</button>
</div>
<div class="column-extra-large-5 column-large-5 column-small-12">
<div class="form-column">
<label for="translated-output" class="form-label">Translated Text (in Dothraki)</label>
<textarea id="translated-output" class="form-field form-textarea"></textarea>
</div>
</div>
</div>
</form>
</div>
</section>
<script src="dist/script/index.js"></script>
</body>
</html>