about summary refs log tree commit diff stats
path: root/js/canvas/index.html
blob: 7b5df21cfab9ab2a9a7a45a9a4e5a4e6880318bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>game</title>
	<style type="text/css">
		body {
			padding: 1em 0;
		}
		#gameCanvas {
		  border: 1px solid black;
		  margin: 0 auto;
		  display: block;
		  background-color: #f0f0f0;
		}
	</style>
</head>
<body>
	<canvas id="gameCanvas" width="800" height="600"></canvas>
	<script type="text/javascript" src="game.js"></script>
</body>
</html>