forked from Bark-fa/Anglish-Translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (44 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="an open source English to Anglish translator">
<meta name="keywords" content="Anglish translator, English to Anglish translator, translate to fully Germanic English">
<meta name="author" content="Bark Fa.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anglish Translator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h1>The Anglish translator</h1>
</nav>
<div class="text-container">
<div class="english-text">
<textarea id="english" cols="50" rows="20" placeholder="English goes here"></textarea>
<span id="percentage" style="display: block;"></span>
<input type="button" id="translate" class="btn" onClick="translateToAnglish()" value="Translate to Anglish">
<input type="button" id="swap" class="btn" onClick="swap()" value="Swap">
</div>
<div class="anglish-text">
<textarea id="anglish" cols="50" rows="20" readonly placeholder="Anglish translation will show here"></textarea>
</div>
</div>
<div class="container">
<a href="https://github.com/Bark-fa/Anglish-Translator" target="_blank">GitHub</a>
<small>You can support the project by adding translations to the wordbook.js file</small>
<h2>Learn more About Anglish</h2>
<ul>
<li><a href="https://anglish.fandom.com/wiki/What_is_Anglish%3F" target="_blank">What is Anglish</a></li>
<li><a href="https://en.wikipedia.org/wiki/Linguistic_purism_in_English" target="_blank">Linguistic purism in English - Wikipedia</a></li>
<li><a href="https://anglish.org/wiki/Anglish" target="_blank">anglish.org</a></li>
<li><a href="https://www.youtube.com/watch?v=IIo-17SIkws" target="_blank">A great YouTube video by Langfocus</a></li>
<li><a href="https://anglish.fandom.com/wiki/English_Wordbook" target="_blank">The Anglish wordbook (dictionary)</a></li>
</ul>
</div>
<footer>A project by Bark Fa.</footer>
<script type='text/javascript' src='wordbook.js'></script>
<script type='text/javascript' src='grammar_engine.js'></script>
<script src="script.js" defer></script>
</body>
</html>