InterviewSolution
Saved Bookmarks
| 1. |
How to draw a ellipse in SVG? |
|
Answer» 'ellipse' tag of SVG is used to draw a ellipse. Following are the commonly used attributes −
Example − <ellipse cx = "100" cy = "100" rx = "90" ry = "50" stroke = "black" stroke-width = "3" fill = "rgb(121,0,121)"> |
|