Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML canvas Tag</title> <style type="text/css"> canvas{ border: 1px solid #000; } </style> </head> <body> <canvas id="myCanvas" width="300" height="200"></canvas> <script type="text/javascript"> window.onload = function(){ var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); context.moveTo(50, 150); context.lineTo(250, 50); context.stroke(); }; </script> </body> </html>