geometry-background-image-002-ref.html (326B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 html, body { margin: 0; padding: 0; } 5 </style> 6 <body> 7 <canvas id ="canvas" width="200" height="200"></canvas> 8 <script> 9 var canvas = document.getElementById('canvas'); 10 var context = canvas.getContext("2d"); 11 context.fillStyle = 'green'; 12 context.fillRect(0, 0, 200, 200); 13 </script> 14 </body> 15 </html>