about summary refs log tree commit diff stats
path: root/html/XCOM/index.html
blob: 7ba43467d490c1087b82a87f2600629d2945e199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>YCOM</title>
    <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎯</text></svg>">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="gameContainer">
        <canvas id="gameCanvas"></canvas>
        <div id="actionButtons">
            <button id="endTurnBtn">End Turn</button>
            <button id="skipMovementBtn">Skip Movement</button>
            <button id="skipAttackBtn">Skip Attack</button>
        </div>
    </div>

    <script src="game.js"></script>
</body>
</html>