-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tower defense game</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.scss">
</head>
<body style="margin:0; padding: 0;box-sizing: border-box" >
<main class="container">
<div class="ui-grid-3 center">
<div>
<p id="ui-score"></p>
<p id="ui-life"></p>
</div>
</div>
<div class="ui-grid-9 center">
<canvas class="game-container" id="canvas"></canvas>
</div>
<div class="ui-grid-3 center">
<div class="ui-shop" id="ui-shop"></div>
<div class="debugger-menu-container">
<input type="checkbox" id="debugMode" >
<label for="debugMode">Debug mode</label>
</div>
</div>
</main>
</body>
<script src="src/index.js"></script>
</html>