HERE IS THE HTML CODE: <!DOCTYPE html> <html> <head> <title>HOUSE</title> </head> <body> <canvas id=pane width=700 height=600 style="border:1px solid #000000;"></canvas> <script> var c = document.getElementById('pane').getContext('2d'); //house base c.fillStyle = "darkkhaki"; c.fillRect(200, 200, 300, 200); //door c.fillStyle = "brown"; c.fillRect(325, 275, 50, 125); //left window c.fillStyle = "skyblue"; c.fillRect(225, 275, 50, 50); //window frame ...
Comments
Post a Comment