This commit is contained in:
sessionm21
2018-05-26 11:06:17 -07:00
parent de0fbfed94
commit 0939a6590e
8 changed files with 777 additions and 0 deletions

23
index.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"
</head>
<body>
<div id="gameSurface" class="playSurface">
</div>
<div class="playerstats">
<div>Stat<p id="statField"></p>un</div>
<input id="cPick">
<button id="White">Choose White</button>
<button id="Black">Choose Black</button>
<div id="playerOneScore" class="playerScore">Points:<p></p></div>
<div id="playerTwoScore" class="playerScore">Points:<p></p></div>
</div>
</body>
<script src="client.js"></script>
</html>