summaryrefslogtreecommitdiff
path: root/index.html
blob: 5ac2e34b1242424c44a1fd494583d3c26e0c484c (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
<!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="./decks.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>