How to draw ellipse with SVG two-dimensional vector graphics in HTML

1 Answer

0 votes
<!DOCTYPE html> 
<html> 
<body> 
<svg width="500" height="500">    
   <ellipse cx="160" cy="160" rx="150" ry="75" stroke="green" stroke-width="3" fill="red"/>
</svg>   
</body> 
</html>

 



answered Oct 8, 2019 by avibootz
...