demo-123.html 661 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html lang="en-us">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
  7. <title>Hello, sqlite3</title>
  8. <style>
  9. .warning, .error {color: red}
  10. .error {background-color: yellow}
  11. body {
  12. display: flex;
  13. flex-direction: column;
  14. font-family: monospace;
  15. white-space: break-spaces;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <h1>1-2-sqlite3 demo</h1>
  21. <script src="jswasm/sqlite3.js"></script>
  22. <script src="demo-123.js"></script>
  23. </body>
  24. </html>