mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 19:26:43 +01:00
29 lines
909 B
HTML
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> |