<h4>a simple stacked bar graph in SVG</h4>
<svg width="300" height="200">
<line x1=10 y1=200 x2=480 y2=200 style="stroke: #aaa" />
<rect width=50 height=120 x=40 y=80 style="fill: #F63" />
<rect width=50 height=20 x=40 y=60 style="fill: #06F" />
<rect width=50 height=180 x=130 y=20 style="fill: #3F3" />
<text x=65 y=90 class="label">first</text>
<text x=65 y=70 class="label">second</text>
<text x=155 y=30 class="label">third</text>
</svg>