about summary refs log blame commit diff stats
path: root/html/plains/index.html
blob: 0ca28073c49b89b7b096714661bb42efc607775d (plain) (tree)
1
2
3
4
5
6
7


                



                                                                                        


















                                     
                                      

                                   

       
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Plains</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Little black square wanted to be a fucking Jedi.">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #f0f0f0;
            overflow: hidden;
        }
        canvas {
            display: block;
            width: 100vw;
            height: 100vh;
        }
    </style>
</head>
<body>
    <canvas id="gameCanvas"></canvas>
    <script src="enemies.js"></script>
    <script src="game.js"></script>
</body>
</html>