008 : Node 008

Balthazar:

xxxx

Create the following file in your project:

game.html: Basic HTML file
<html> <head> <title>Canvas Game</title> <link rel="stylesheet" type="text/css" href="style.css" /> <script type='text/javascript' src="script.js"></script> </head> <body> <canvas id="stage"></canvas> </body> </html>

GOTO 020