-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.39 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>cubbon duck chronicles</title>
<meta name="description" content="better late than never. happy birthday!">
<meta property="og:title" content="cubbon duck chronicles">
<meta property="og:description" content="better late than never. happy birthday!">
<meta property="og:image" content="https://duck.thedataareclean.com/preview.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="cubbon duck chronicles">
<meta name="twitter:description" content="better late than never. happy birthday!">
<meta name="twitter:image" content="https://duck.thedataareclean.com/preview.png">
<link rel="icon" type="image/png" href="favicon.png">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%; height: 100%;
background: #1a2e1a;
display: flex; justify-content: center; align-items: center;
overflow: hidden; touch-action: none;
}
canvas { display: block; image-rendering: pixelated; image-rendering: crisp-edges; }
</style>
</head>
<body>
<canvas id="g"></canvas>
<script type="module" src="src/main.js"></script>
</body>
</html>