Share this post! | Vote this! |
|
In this tutorial, we are going to create a squash game using HTML5 technology – Canvas. If you are new to canvas, please be sure to read the “HTML5 Canvas For Absolute Beginners – Part 1” before you proceed.
Let’s start our tutorial by creating a HTML document with official HTML5 document type:-
1. <!DOCTYPE html>
This is to tell your browser that, this is the latest version of HTML document with canvas supported.
Next, we create a canvas with an id “gameBoard”, width, height defined and place it inside the body tag as shown below:
<canvas id="gameBoard" width="300" height="300">
More...
0 comments:
Post a Comment