index.html 932 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>FMX Host</title>
  6. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> <!-- Prevents caching -->
  7. <meta http-equiv="Pragma" content="no-cache"> <!-- Legacy HTTP 1.0 backward compatibility -->
  8. <meta http-equiv="Expires" content="0"> <!-- Proxies -->
  9. <link href="bulma.min.css" rel="stylesheet">
  10. <script src="hostconfig.js"></script>
  11. <script src="httphost.js"></script>
  12. <style>
  13. #pasjsconsole {
  14. border-style: solid;
  15. border-width: 1px;
  16. margin-left: 64px;
  17. margin-right: 64px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="container">
  23. <h3 class="title is-3">Webassembly program output</h3>
  24. <hr>
  25. <div class="box">
  26. <div id="pasjsconsole" >
  27. </div>
  28. </div>
  29. <script>
  30. rtl.showUncaughtExceptions=true;
  31. rtl.run();
  32. </script>
  33. </body>
  34. </html>