-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 853 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 853 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hands written fonts app</title>
<link rel="stylesheet" href="https://unpkg.com/bootstrap@5.1.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="hwf.css">
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script src="https://unpkg.com/vuex@4/dist/vuex.global.js"></script>
<script src="UnicodeRanges.js"></script>
<script src="Curves.js"></script>
<script src="Router.js"></script>
<script src="SymbolMeasure.js"></script>
<script src="Draw.js"></script>
<script src="Store.js"></script>
<script src="SymbolImage.js"></script>
<script src="SymbolCanvas.js"></script>
<script src="SymbolEdit.js"></script>
</head>
<body>
<div id="vue-app"></div>
<script src="hwf-app.js"> </script>
</body>
</html>