You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calculator.hbs 704B

123456789101112131415161718192021222324
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="/css/common.css">
  4. <link rel="stylesheet" href="/css/calc.css">
  5. <script id="program" language="json" type="{{ content-type }}">
  6. {{ program }}
  7. </script>
  8. <script type="module">
  9. window.addEventListener("load", () => {
  10. import("/js/calc.mjs");
  11. })
  12. </script>
  13. </head>
  14. <body>
  15. <div class="body">
  16. <h1 class="title" id="name">Loading</h1>
  17. <div id="input"></div>
  18. <span id="output"></span>
  19. <span id="error"></span>
  20. <button id="report">Show me your math!</span>
  21. </div>
  22. </body>
  23. </html>