about summary refs log tree commit diff stats
path: root/js/mountain/index.html
blob: 75d47aa55f4f51c4c1c24b99069652583acbb1b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>2D Side Scrolling Platformer</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            background-color: beige;
        }
        #gameCanvas {
            display: block;
        }
    </style>
</head>
<body>
    <canvas id="gameCanvas"></canvas>
    <script src="game.js"></script>
</body>
</html>