123456789101112131415161718192021222324 |
- <html>
- <head>
- <link rel="stylesheet" href="/css/common.css">
- <link rel="stylesheet" href="/css/calc.css">
- <script id="program" language="json" type="{{ content-type }}">
- {{ program }}
- </script>
-
- <script type="module">
- window.addEventListener("load", () => {
- import("/js/calc.mjs");
- })
- </script>
- </head>
- <body>
- <div class="body">
- <h1 class="title" id="name">Loading</h1>
- <div id="input"></div>
- <span id="output"></span>
- <span id="error"></span>
- <button id="report">Show me your math!</span>
- </div>
- </body>
- </html>
|