23 lines
550 B
HTML
23 lines
550 B
HTML
<!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> |