about summary refs log blame commit diff stats
path: root/html/isometric-bounce/index.html
blob: 570f247f918541302dfe4e2f9b9d735a56f15ddc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
               
                
      
                                       








                             
                                







                                      
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Bouncy Isometric Guy</title>
    <style>
        body {
            margin: 0;
            overflow: hidden;
        }
        canvas {
            display: block;
            width: 100vw;
            height: 100vh;
            background: #bce8ff;
        }
    </style>
</head>
<body>
    <canvas id="gameCanvas"></canvas>
    <script src="js/game.js"></script>
</body>
</html>