summaryrefslogtreecommitdiff
path: root/index.html
blob: cb79140a0980a7dbd51a5e619236ce18e5319fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>学汉字</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="./characters.js"></script>
    <script src="./App.js"></script>
    <script src="./main.js"></script>
  </head>

  <body>
    <noscript>
      <h1>You need JavaScript enabled to view this site.</h1>
    </noscript>
    <div id="root"></div>
  </body>
</html>