diff options
| author | sanine-a <sanine.not@pm.me> | 2021-04-13 11:37:51 -0500 | 
|---|---|---|
| committer | sanine-a <sanine.not@pm.me> | 2021-04-13 11:37:51 -0500 | 
| commit | c9c1b78ed805371615d3ca8b54c86da9a35db8ce (patch) | |
| tree | 1af9063f2e30392fc039738105f86461dddec576 /index.html | |
| parent | bc594a2d3839d1d0a3cc76eed23ec8535c72f6bf (diff) | |
implement basic user input and button styling
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 9 | 
1 files changed, 7 insertions, 2 deletions
| @@ -2,16 +2,21 @@  <html>    <head>      <meta charset="utf-8"> -    <title>学汉字</title> +    <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="./App.js"></script> -    <script src="./main.js"></script> +     +    <!-- styling --> +    <link href="./style.css" rel="stylesheet">    </head>    <body> | 
