<!DOCTYPE html>
<html align="center">
<body>
<h5 align="right">https://csprograms4u.blogspot.in/</h5>
<p><strong>Program:</strong> Box Representation with Diagonal</p>
<canvas id="myCanvas" width="300" height="200" style="border:3px solid #4B0082;">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.moveTo(0,0);
ctx.lineTo(300,200);
ctx.moveTo(0,200);
ctx.lineTo(300,0);
ctx.stroke();
</script>
</body>
</html>
No comments:
Post a Comment
Note: only a member of this blog may post a comment.