-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.29 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
35
36
<!-- Documentation for EaselJS: https://www.createjs.com/docs/easeljs/modules/EaselJS.html -->
<!-- CreateJS: https://www.createjs.com/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Bungee|Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="src/reset.css">
<link rel="stylesheet" type="text/css" href="src/index.css">
</head>
<body>
<header>
<h1>Color Game</h1>
</header>
<main class="game-container">
<canvas id="board"></canvas>
<canvas id="color-queue"></canvas>
<!-- <div class="color-container">
<p>Next</p>
<div id="first" class="color-next"></div>
<div id="second" class="color-next"></div>
<div id="third" class="color-next"></div>
</div> -->
<div class="score-container">
<p class="player-score-text">Score</p>
<h3 class="player-score">999999</h3>
<p class="high-score-text">High Score</p>
<h3 class="high-score">999999</h3>
</div>
</main>
<script type="module" src="src/index.js"></script>
</body>
</html>