SVG circle
HTML
<svg width=400 height=400>
<circle cx="200" cy="200" r="100"/>
</svg>
CSS
circle{
fill: yellow;
stroke:black;
stroke-width: 0.5em;
stroke-dasharray: 30,15;
}
<svg width=400 height=400>
<circle cx="200" cy="200" r="100"/>
</svg>
circle{
fill: yellow;
stroke:black;
stroke-width: 0.5em;
stroke-dasharray: 30,15;
}