I just wanted to share this small code sample for embedding HTML5 canvas fully inside the browser window. The simplest HTML looks like this:
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<canvas id="myCanvas" style="">
</canvas>
</body>
</html>
Back to top