circles = svg`<svg viewBox="0 0 100 100" height=300 xmlns="http://www.w3.org/2000/svg">
<!-- Using g to set presentation attributes inherited by children -->
<g fill="rgba(255, 255, 255, .8)" stroke="crimson" stroke-width="5">
<circle id="1st" cx="40" cy="40" r="25" />
<circle id="2nd" cx="60" cy="60" r="25" stroke = "steelblue" />
</g>
</svg>`