HTML 5 – Scalable Vector Graphics
I created the following shape
using this code:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="200" height="200"><rect x="10" y="10" width="100" height="100" fill="blue" stroke="red" stroke-width="5px" rx="8" ry="8" id="myRect" class="chart" /></svg>
One note- in WP, all the code needs to be on one line, otherwise it breaks the code.