-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Transliterator</title>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Abaza transliterator</h1>
<form>
<textarea id="abaza_text" type="textarea" rows="7" cols="80" placeholder="input text in Abaza" spellcheck="false"></textarea><br>
<div id='main'>
<label class="option">Remove punctuation
<input id="punct" type="checkbox"><span class="checkmark"></span>
</label><br>
<label class="option">Replace spaces with tabs
<input id="tab" type="checkbox"><span class="checkmark"></span>
</label><br>
<label class="option">Don't show stress
<input id="stress" type="checkbox"><span class="checkmark"></span>
</label><br>Transliteration system:
<select id="trans_sys">
<option class="system" value="fieldwork">Fieldwork</option>
<option class="system" value="ipa">IPA</option>
</select>
</div>
</form>
<br>
<button type="button" class="button" id="transliterate">Transliterate</button>
<!--transliterator end-->
<div id="output">
<textarea rows="7" cols="80" id="tip" name="output" spellcheck="false"></textarea>
</div>
<p align="center"><a class="git" href="https://github.com/ansorox/translit-app">Github</a></p>
<script type="text/javascript" src="aba-trans.js"></script>
</body>
</html>