-
Notifications
You must be signed in to change notification settings - Fork 0
/
Daeron.html
71 lines (55 loc) · 1.61 KB
/
Daeron.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
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daeron</title>
<link rel="icon" type="image/ico" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quintessential" rel="stylesheet">
<link rel='stylesheet' href='css/framework.css'>
<link rel='stylesheet' href='css/keyboarder.css'>
<link rel='stylesheet' href='css/daeron.css'>
</head>
<body>
<header>
<nav class="navbar">
<img src="device.png" class="app-icon" />
<a href="#" class="app-name">Daeron</a>
<ul class="right">
<li>
<a href="index.html" class="navlink">Rúmil →</a>
</li>
</ul>
</nav>
</header>
<div id="root" class="main">
<section>
<h3 class="right cirth"></h3>
<h3>Teitho Girth!</h3>
<textarea class="cirth" id="input"></textarea>
</section>
<section style="display: none">
<h3>Original:</h3>
<textarea id="original"></textarea>
</section>
<section>
<h3>Resources</h3>
<p>
Cf. <b><a href="http://eldamo.org/" target="_blank">Eldamo</a></b>
for a detailed database of Tolkien's linguistic creations.
</p>
</section>
</div>
<!-- Mappings for Tengwar -->
<script type="text/javascript" src="js/keyboarder.js"></script>
<script type="text/javascript" src="js/cirth_map.js"></script>
<script type="text/javascript">
(function () {
var input = document.getElementById('input');
Keyboarder.applyLayout(input, CirthKeyMap);
Keyboarder.showOnscreenKeyboard(input, CirthKeyMap);
input.focus();
})();
</script>
</body>
</html>