Canvas
For the Canvas assignment I attempted to code several shapes by trying to follow some of the tutorials. To no avail, I've managed to confuse myself further. If anyone can help that would be greatly appreciated. Here is the mess I made and the result. <!doctype html> <html> <head> <meta charset="UTF-8"> <title>DeCurtis_Canvas</title> </head> <body> </body> </html> // Circle // <svg height="100" width="100"> <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" / <svg height="140" width="500"> <ellipse cx="200" cy="80" rx="100" ry="50" style="fill:yellow;stroke:purple;stroke-width:2" /> </svg> // Line // <svg height="210" width="500"> <line xl=...