-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbraille.html
53 lines (53 loc) · 1.85 KB
/
braille.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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="braille.css">
<link rel="shortcut icon" href="favicon.ico?">
<title>Braille</title>
</head>
<body>
<h1 id="title">Braille Conversion Website</h1>
<p id="link"><a id="harriswebsite" href="https://harrismowbray.com">By Harris Mowbray</a> | <a href="braille.txt" id="update">Updates</a></p>
<h3 id="choose">Choose a Language:</h3>
<div class="selectblock">
<select id="language" onchange="changethelang(this.value)"></select>
</div>
<br>
<textarea id="input" spellcheck="false" onkeyup="printBraille(this.value)"></textarea>
<textarea id="output" contenteditable="false"></textarea>
<textarea id="ascii" contenteditable="false" onkeyup="ASCIItoUnicode(this.value)"></textarea>
<h1 id="brltype"></h1>
<div class="tables">
<table id="t0">
</table>
<table id="t1">
</table>
<table id="t2">
</table>
<table id="t3">
</table>
<table id="t4">
</table>
<table id="t5">
</table>
</div>
<h1 id="thebrltype"></h1>
<div class="tables">
<table id="y0">
</table>
<table id="y1">
</table>
<table id="y2">
</table>
<table id="y3">
</table>
<table id="y4">
</table>
<table id="y5">
</table>
</div>
<button onclick="bruh()">Download .BRL File</button>
</body>
<script src="braille.js"></script>
<script src="braille-data.js"></script>
</html>