aboutsummaryrefslogtreecommitdiffstats
path: root/public/index.html
blob: 39f2afc9868f046c213010143c83e0882d91b08c (plain)
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
<!doctype html>

<html lang="en">
  <head>
	<title>rogue.js</title>
	<meta charset="utf-8">

	<link rel="stylesheet" href="styles/normalize.css">
	<link rel="stylesheet" href="styles/simple.css">
  </head>
  <body>
	<div class="center">
	  <h1>rogue.js</h1>
	</div>
	<canvas id="gameboard" class="center" width="512" height="416"></canvas>
    <button id="joingame" type="button" title="Join Game">Join Game</button>
    <button id="leavegame" type="button" title="Leave Game">Leave Game</button>
    <button id="wsSendButton" type="button" title="Send WebSocket message">
      Send WebSocket message
    </button>
    <pre id="messages" style="height: 400px; overflow: scroll"></pre>
    <footer><p>&copy; Matt Kohls, 2019</footer>
	<script src="js/rogue.js"></script>
  </body>
</html>