HTML CSS examples for SVG:Circle
Creating a heavily segmented ring/circle SVG
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!-- w w w .ja v a 2 s . c om--> <body> <svg viewbox="0 0 100 100"> <circle cx="50" cy="50" r="30" stroke-dasharray="0.628" stroke-width="2" fill="none" stroke="black" /> </svg> </body> </html>