Creating a heavily segmented ring/circle SVG - HTML CSS SVG

HTML CSS examples for SVG:Circle

Description

Creating a heavily segmented ring/circle SVG

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials