browser-go-proto/index.html

30 lines
1 KiB
HTML
Raw Normal View History

2019-07-26 16:59:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-08-02 00:10:56 +00:00
<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>
2019-07-26 16:59:47 +00:00
</head>
<body>
2019-08-02 00:10:56 +00:00
<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>
2019-07-26 16:59:47 +00:00
</body>
</html>