17 lines
496 B
HTML
17 lines
496 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>NOT TONIGHT</title>
|
|
<style>
|
|
html, body { margin: 0; padding: 0; background: #0a0a12; height: 100%; }
|
|
body { display: flex; align-items: center; justify-content: center; }
|
|
canvas { image-rendering: pixelated; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|