-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (32 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
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dots & Boxes</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/png" href="./assets/favicon-32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./assets/favicon-16.png" sizes="16x16" />
</head>
<body>
<div class="controls">
<label>Grid Size
<input type="range" min="5", max="10" value="7" id="gridSize" />
</label>
<div class="player">
<span class="player-num">Player 1</span>
<input type="color" value="#ff6666" id="p1Colour" />
<span class="score" id="p1Score">0</span>
<div class="turn" id="turn">●</div>
</div>
<div class="player">
<span class="player-num">Player 2</span>
<input type="color" value="#3CB371" id="p2Colour" />
<span class="score" id="p2Score">0</span>
</div>
</div>
<div class="play-area">
<canvas>Canvas not supported by browser</canvas>
</div>
<script src="./index.js"></script>
</body>
</html>