-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
26 lines (26 loc) · 1013 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
<!DOCTYPE HTML>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this file,
You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html lang="en">
<head>
<title>SVG OpenType Workshop</title>
<script src="SfntTables.js"></script>
<script src="SvgTable.js"></script>
<script src="CmapTable.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="main.css">
<style id="inlineStyle"></style>
</head>
<body>
<p>Load file: <input id="inputFile" type="file">
<p>SVG document: <button id="createTemplateButton">Create template</button>
<button id="addDocumentButton">Add document</button>
<p><label><input id="ignoreDuplicateGlyphsCheckbox" type="checkbox">Ignore duplicate glyph IDs</label>
<div id="docContainer"></div>
<p id="svgTextError">
<p>Sample text:
<div id="sample" class="editable" contenteditable></div>
<p><a id="download" download="generated.otf">Save generated font</a>
</body>
</html>