1 2 3 4 5 6 7 8 9 10 11 12
<!DOCTYPE html> <html> <body> <canvas id="canvas" width="200" height="200"></canvas> </body> <script> var canvas = document.getElementById("canvas"); var ctx = canvas.getContext("2d"); ctx.fillStyle = "green"; ctx.fillRect(0, 0, 200, 200); </script> </html>