UNPKG

tin-engine

Version:

Simple game engine to make small canvas based games using es6

26 lines (21 loc) 781 B
<!DOCTYPE html> <html> <head> <title>Game Title</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- Update this for thumbnail and description that is used in page preview --> <meta property="og:title" content="Game Title" /> <meta property="og:image" content="img/konservenfabrik.gif" /> <meta property="og:description" content="Game description" /> <link rel="stylesheet" type="text/css" href="css/main.css"> </head> <body> <div id="loading"> <p>Loading...</p> <p><img src="img/konservenfabrik.gif" alt="loading"></p> <p>Powered by Tin-Engine</p> </div> <canvas id="gameframe" moz-opaque opaque></canvas> <script type="text/javascript" src="js/game.js"></script> </body> </html>