HTML · 572 bytes Raw Blame History
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>dougk - a cozy pond</title>
7 <style>
8 * {
9 margin: 0;
10 padding: 0;
11 box-sizing: border-box;
12 }
13 body {
14 overflow: hidden;
15 background: #2d5a3d;
16 display: flex;
17 justify-content: center;
18 align-items: center;
19 min-height: 100vh;
20 }
21 canvas {
22 display: block;
23 }
24 </style>
25 </head>
26 <body>
27 <script type="module" src="/src/main.js"></script>
28 </body>
29 </html>