-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (44 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<!-- vim: set noet: -->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Kutuzov</title>
<script>
if (
!window.File ||
!window.FileReader ||
!window.Blob
) {
alert('Your browser incompatible with Kutuzov. No luck.');
}
</script>
<link rel="stylesheet" href="ktz.css" type="text/css" media="screen" charset="utf-8"/>
</head>
<body>
<div id="controls">
<input id="file" name="file" type="file" />
<label for="settings-wpm">words per minute</label>
<input id="settings-wpm" name="wpm" type="text" value="500" size="4" maxlength="4" />
<label for="settings-align">text align</label>
<select id="settings-align" name="align">
<option value="center">center</option>
<option value="left">left</option>
<option value="right">right</option>
</select>
<label for="settings-chunk-size">chunk size</label>
<input id="settings-chunk-size" name="chunkSize" type="text" value="1" size="1" maxlength="1" />
<label for="settings-font-size">font size</label>
<input id="settings-font-size" name="fontSize" type="text" value="24" size="3" maxlength="3" />
</div>
<div id="container">
<div id="output">
</div>
</div>
<script src="ev.js"></script>
<script src="ktz.js"></script>
<script>
ktz.init();
</script>
</body>
</html>