mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 19:26:43 +01:00
18 lines
397 B
HTML
18 lines
397 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8" />
|
|
<title>uw8-run</title>
|
|
<style>
|
|
@import "run-web.css";
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="screen" width="320" height="240" tabindex="1">
|
|
</canvas>
|
|
<div id="message"></div>
|
|
</body>
|
|
<script type="module">
|
|
import "./run-web.js";
|
|
</script>
|
|
</html> |