computersandblues.hitomezashi/index.html
2024-07-18 22:39:11 +02:00

26 lines
616 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thi.ng rdom</title>
<style>
html, body { padding: 0; margin: 0; min-height: 100vh; }
body {
background: #eee;
color: #222;
font-family: sans-serif;
padding: 40px;
}
canvas {
border: 1px solid #99b;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>