| 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8" /> |
| 5 | <meta |
| 6 | name="viewport" |
| 7 | content="width=device-width, initial-scale=1.0, user-scalable=no" |
| 8 | /> |
| 9 | <link rel="apple-touch-icon" sizes="180x180" href="https://dino.stevedylan.dev/apple-touch-icon.png"> |
| 10 | <link rel="icon" type="image/png" sizes="32x32" href="https://dino.stevedylan.dev/favicon-32x32.png"> |
| 11 | <link rel="icon" type="image/png" sizes="16x16" href="https://dino.stevedylan.dev/favicon-16x16.png"> |
| 12 | <link rel="manifest" href="https://dino.stevedylan.dev/site.webmanifest"> |
| 13 | <title>Dino</title> |
| 14 | <meta property="og:title" content="Dino" /> |
| 15 | <meta property="og:description" content="Just the dino" /> |
| 16 | <meta property="og:image" content="https://dino.stevedylan.dev/og.png" /> |
| 17 | <meta property="og:type" content="website" /> |
| 18 | <meta property="og:url" content="https://dino.stevedylan.dev" /> |
| 19 | <meta name="twitter:card" content="summary_large_image" /> |
| 20 | <meta name="twitter:title" content="Dino" /> |
| 21 | <meta name="twitter:description" content="Just the dino" /> |
| 22 | <meta name="twitter:image" content="https://dino.stevedylan.dev/og.png" /> |
| 23 | <link rel="stylesheet" href="./src/style.css" /> |
| 24 | </head> |
| 25 | <body> |
| 26 | <div id="game-container"></div> |
| 27 | <div id="cheatsheet"> |
| 28 | <span>SPACE / UP — jump</span> |
| 29 | <span>DOWN — duck</span> |
| 30 | <span>M — mute</span> |
| 31 | </div> |
| 32 | <div id="touch-zones"> |
| 33 | <div id="touch-duck">DUCK</div> |
| 34 | <div id="touch-jump">JUMP</div> |
| 35 | </div> |
| 36 | <script type="module" src="./src/index.js"></script> |
| 37 | </body> |
| 38 | </html> |