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

1 Answer

0 votes
<!DOCTYPE html> 
<html> 
<body> 
<svg width="120" height="120">    
   <circle cx="60" cy="60" r="50" stroke="green" stroke-width="3" fill="red" />    
</svg>   
</body> 
</html>

 



answered Oct 8, 2019 by avibootz
...