-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (26 loc) · 904 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<label>From: <select disabled name="srcPhonType">
<option value="ARPA">ARPAbet</option>
<option value="IPA">International Phonetic Alphabet</option>
</select></label>
<!--<button type="button" name="button"></button>-->
<label>To: <output name="destType" data-bind="text:destType"></output></label>
<hr>
<textarea name="srcPhon" rows="8" cols="80" data-bind="textInput: srcPhon"></textarea>
<hr>
<output name="dest">
<pre data-bind="text:dest" style="
font-family: "Lucida Sans Unicode", "DejaVu Sans", monospace;
letter-spacing: 0.02em;
"></pre>
</output>
<script src="ext/knockout-3.4.2.js" charset="utf-8"></script>
<script src="arpabet.js" charset="utf-8"></script>
</body>
</html>