Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html>
- <head>
- </head>
- <body>
- <canvas id="MyCanvas" width="600" height="300"></canvas>
- <script>
- var canvas = document.getElementById('MyCanvas');
- var context = canvas.getContext('2d');
- context.beginPath();
- context.lineWidth = 15;
- context.moveTo(100,125);
- context.lineTo(150, 75);
- context.lineTo(200, 125);
- context.lineTo(150, 225);
- context.closePath();
- context.fillStyle = 'blue';
- context.fill();
- context.lineJoin='round';
- context.stroke();
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement