-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (35 loc) · 1.36 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>
<html lang="en">
<head>
<style type="text/css">
canvas {
border: 1px solid red;
margin: 20px;
}
</style>
<script src="./scribeocr/lib/fabric.js"></script>
<!-- Contains modified version of opentype. Do not update without porting over changes. -->
<script src="./scribeocr/lib/opentype.js" async></script>
<script type="module" src="overlapTest.js"></script>
</head>
<body>
<label for="compFont">Comparison Font</label>
<select id="compFont" class="form-control btn-sm" size="1">
</select>
<label for="compStyle">Style</label>
<select id="compStyle" class="form-control btn-sm" size="1">
<option id="optionNormal" value="normal">Normal</option>
<option id="optionItalic" value="italic">Italic</option>
</select>
<button id="compFontBtn">Compare Fonts</button>
<label for="compAll">Optimize</label>
<input type="checkbox" id="optimizeCheck" name="Optimize"/>
<label for="compAll">Compare All</label>
<input type="checkbox" id="compAll" name="Compare All"/>
<label for="downloadFont">Download Font</label>
<select id="downloadFont" class="form-control btn-sm" size="1">
</select>
<button id="downloadFontBtn">Download Font</button>
<canvas id="e" width="100" height="100" style="display:none"></canvas>
</body>
</html>