browser-go-proto/index.html
2019-08-01 17:10:56 -07:00

30 lines
No EOL
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/reset.css" type="stylesheet">
<link rel="stylesheet" href="css/main.css" type="stylesheet">
<script src="js/main.js"></script>
<title>Go Cats</title>
</head>
<body>
<div id="menu" class="full-screen">
<!-- for displaying new game screen and status during game -->
</div>
<!-- may need add'l .full-screen or other div for board overlay -->
<content>
<div id="white-pos" class="player-pos">
<div id="white-bowl" class="bowl"></div>
<div id="white-caps" class="caps"></div>
</div>
<div id="board"></div>
<div id="black-pos" class="player-pos">
<div id="black-bowl" class="bowl"></div>
<div id="black-caps" class="caps"></div>
<div id="kifu"></div>
</div>
</content>
</body>
</html>