-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.29 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Language" content="uk">
<title>Trasliteration of the Ukrainian language</title>
<script type="text/javascript" src="dist/transliteration.min.js"></script>
</head>
<body>
<div class="content">
<h1 style="text-align: center;">Trasliteration of the Ukrainian language</h1>
<p><strong>Bla bla bla</strong><br>
TBD: Some rules
</p>
<form name="formText" style="text-align: center;">
<textarea style="width: 100%;" rows="17" name="editSrc"></textarea>
<input onclick="this.form.editSrc.value=transliteration.uk.fromCyrillic(this.form.editSrc.value)" name="buttonConvert" type="button" value="Cyrillic > Latin">
<input type="reset" value="reset">
<input onclick="this.form.editSrc.value=transliteration.uk.toCyrillic(this.form.editSrc.value)" name="buttonConvert" type="button" value="Latin > Cyrillic" disabled>
</form>
<p>Some info</p>
<h4>Contacts</h4>
</div>
<script type="text/javascript">
console.log('transliteration.uk.version=' + transliteration.uk.version);
</script>
</body>
</html>