May 7, 2013

Canvas Part-3 demo-1

Your browser does not support the HTML5 canvas tag.
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="400" height="200" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginpath( );
ctx.moveTo(10,10);
ctx.lineTo(200,100);
ctx.stroke();
</script>
</body>
</html>

No comments:

Post a Comment