-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 1.11 KB
/
index.html
File metadata and controls
30 lines (24 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hershey Font Lab</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<!-- import the webpage's javascript file -->
<script src="hf_cmap.js"></script>
<script src="hf_label.js"></script>
<script src="hf_data.js" ></script>
<script src="hershey.js" ></script>
<script src="icons.js" ></script>
<script src="menu2html.js" ></script>
<script src="index.js" defer></script>
</head>
<body>
<div id="main" style="position:absolute;overflow:hidden;width:800px;height:600px;left:calc(50% - 450px);top:calc(50% - 300px);background:white;border:1px solid black;border-radius:4px">
</div>
</body>
<script>
(function(){var script=document.createElement('script');script.onload=function(){var stats=new Stats();document.body.appendChild(stats.dom);requestAnimationFrame(function loop(){stats.update();requestAnimationFrame(loop)});};script.src='//mrdoob.github.io/stats.js/build/stats.min.js';document.head.appendChild(script);})()
</script>
</html>