Assignment 02
                                                                  canvas_assign_02A.html      context.beginPath();  context.moveTo(0, 0);  context.lineTo(800, 600);  context.lineWidth = 5;  context.strokeStyle = 'rgb(0, 255, 0)';  context.stroke();      canvas_assign_02B.html        var x = 0;   var y = 0;   var x1 = 400;   var y1 = 600;   var x2 = 800;   var y2 = 0;   context.beginPath();   context.moveTo(x, y);   context.lineTo(x1, y1);   context.lineTo(x2, y2);   context.lineWidth = 10;   context.strokeStyle = 'rgb(255, 255, 0)';   context.lineCap ='round';   context.stroke();                                                                         canvas_assign_02C...