SVG circle

by Greg Borreson

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