1909718-2-ref.html (300B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id="c" width="200" height="200"></canvas> 5 6 <script> 7 const c = document.getElementById("c"); 8 const ctx = c.getContext("2d"); 9 10 ctx.fillStyle = 'red'; 11 ctx.fillRect(0, 0, 200, 200); 12 13 ctx.fillStyle = 'green'; 14 ctx.fillRect(0, 0, 100, 100); 15 16 </script> 17 18 </body> 19 </html>