-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.07 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
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Grid Warriors</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Orbitron">
<link rel="stylesheet" type="text/css" href="css/gridwarriors.css" />
<link rel="icon" type="image/x-icon" href="images/favicon.ico" />
</head>
<body>
<header id="scoreboard">
<div>
Score: <span id="score">0</span>
</div>
<div>
High Score: <span id="highscore">0</span>
</div>
</header>
<main>
<div class="gamegrid">
<canvas id="gamegrid"></canvas>
<div id="overlay">
<button class="start">Enter the Game Grid</button>
</div>
</div>
</main>
<footer>
<ul>
<li><a href="https://github.com/justino/GridWarriors">Github</a></li>
</ul>
</footer>
<!-- Game starts here -->
<script type="module" src="src/main.ts"></script>
</body>
</html>