index.html 715 Bytes
Newer Older
Alexander Bazo committed
1 2 3 4 5 6 7 8 9 10
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>Star Gazer</title>
    <link rel="stylesheet" href="resources/css/default.css">
</head>

<body>
11 12 13
    <div id="startScreen">
        <div id="startTitle">Star Gazer 2000</div>
        <div id="startButton">Start Game</div>
14 15 16 17 18
        <div id="startMenu">
            <h1>Options</h1>
            <input type="checkbox" id="useMouseInput" name="useMouseInput">
            <label for="useMouseInput">Use mouse input</label>
        </div>
19 20 21
    </div>
    <canvas class="hidden">
    </canvas>
Alexander Bazo committed
22 23 24 25
    <script type="application/javascript" src="vendors/gazeclient.js"></script>
    <script type="module" src="resources/js/index.js"></script>
</body>

26
</html>