blob: 224e992f080e748b61d7e55003d297de8489bd97 (
plain)
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>
<head>
<meta charset="utf-8">
<title>学汉字 | sanine.net</title>
<!-- inferno scripts -->
<script src="https://unpkg.com/inferno@7.4.8/dist/inferno.min.js"></script>
<script src="https://unpkg.com/inferno-hyperscript@7.4.8/dist/inferno-hyperscript.min.js"></script>
<!-- local scripts -->
<script src="./main.js"></script>
<script src="./characters.js"></script>
<script src="./InputBox.js"></script>
<script src="./StyleButton.js"></script>
<script src="./HintButton.js"></script>
<script src="./StyleDropdown.js"></script>
<script src="./App.js"></script>
<!-- styling -->
<link href="./style.css" rel="stylesheet">
</head>
<body>
<noscript>
<h1>You need JavaScript enabled to view this site.</h1>
</noscript>
<div id="root"></div>
</body>
</html>
|