Files
microw8/web/src/index.html
Dennis Ranke c25a52b61b Prepare 0.1.1 release
add devkit mode to web runtime
add unpack and compile commands to uw8
2022-02-04 22:25:17 +01:00

29 lines
909 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>MicroW8</title>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap" rel="stylesheet">
<style>
@import "style.css";
</style>
</head>
<body>
<div id="uw8">
<a href="https://exoticorn.github.io/microw8">MicroW8</a> 0.1.1
</div>
<div id="centered">
<canvas id="screen" width="320" height="240">
</canvas>
<div id="timer" hidden="true"></div>
<div id="message"></div>
<button id="cartButton" style="visibility:hidden">Load cart...</button>
</div>
<div id="footer">
<a href="http://unlicense.org/" ref="license">Unlicense</a>
</div>
</body>
<script type="module">
import "./main.js";
</script>
</html>