Using an SVG circle Element to Render Circles
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="100%" height="100%">
<g transform="translate(200,100)">
<circle cx="100" cy="100" r="50" fill="red" stroke="blue"
stroke-width="10" />
</g>
</svg>
Related examples in the same category