SVG stands for Scalable Vector Graphics and is a language for describing 2D-graphics and graphical applications in XML and the XML is then rendered by an SVG viewer. Most of the web browsers can display SVG just like they can display PNG, GIF, and JPG.
To draw an ellipse in HTML SVG, use the SVG <ellipse> element.
Example
You can try to run the following code to learn how to draw an ellipse in HTML5 SVG −
<!DOCTYPE html> <html> <head> <style> #svgelem { position: relative; left: 10%; -webkit-transform: translateX(-20%); -ms-transform: translateX(-20%); transform: translateX(-20%); } </style> <title>HTML5 SVG Ellipse</title> </head> <body> <h2>HTML5 SVG Ellipse</h2> <svg id = "svgelem" width = "300" height = "200" xmlns = "https://www.w3.org/2000/svg"> <ellipse cx = "120" cy = "50" rx = "100" ry = "50" fill = "blue" /> </svg> </body> </html>