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.rect(50, 25,200, 150);
- context.fillStyle = "Blue";
- context.fill();
- context.lineWidth = 15;
- context.strokeStyle = "red";
- context.stroke();
- context.beginPath();
- context.rect(100, 50,100, 75);
- context.fillStyle = "Blue";
- context.fill();
- context.lineWidth = 15;
- context.strokeStyle = "red";
- context.stroke();
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement