summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/webhogg/index.html
blob: ad951a65b085e332ed004821f5e50a0000175f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>webhogg</title>
        <style>
            body {
                margin: 0;
                background: black;
            }
            #canvas {
                width: 100%;
                height: 100%;
            }
            img {
                background: violet;
            }
        </style>
    </head>
    <body>
        <canvas id='canvas'></canvas>
    </body>
    <script src='loader.js'></script>
</html>