1271058-1-ref.html 274 B

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