microduck-simulator / app /index.html
tfrere's picture
tfrere HF Staff
feat: comic-panel HUD, runtime-faithful pad mapping, props + wheee voices
89f5399
Raw
History Blame Contribute Delete
936 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Microduck</title>
<!-- Anton: the landing's brutal print display voice (FancyTitle /
ComicButton on the pollen-website Microduck pages). -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Anton&display=swap"
rel="stylesheet"
/>
<style>
:root {
--ink: #08080c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body { background: var(--ink); overflow: hidden; }
#root { height: 100%; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>