2022-02-24 21:13:10 -05:00

27 lines
635 B
HTML

<!DOCTYPE html>
<html lang="en">
<!-- Disable zooming: -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<head>
<meta charset="utf-8">
<title>Integral Demonstration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<noscript>Please enable Javascript, this page uses both WebAssembly and Javascript to run.</noscript>
<canvas id="canvas"></canvas>
<script type="module">
import init, { start } from '../pkg/integral_site.js';
async function run() {
await init();
start("canvas");
}
run();
</script>
</body>
</html>