SVG circle and rectangle
demo of two SVG shapes, including fill, stroke, and opacity
HTML
<svg height="200" width="200"
style="border:1px solid #d3d3d3;">
<circle cx="50" cy="50" r="40"
stroke="black" stroke-width="3" fill="#ff8800" />
<rect x="50" y="5" height="90" width="100"
fill="#00cc00" opacity="0.7" />
</svg>