{
const svg = html
`
<svg style = "background:hotpink;border:1px solid black" width = 600 height = 300>
<circle r = 50 cx = 300 cy = 150 fill = "aqua" stroke = "black" />
<rect width = 50 height = 50 x = 300 y = 150 fill = "red" stroke = "black" />
</svg>
`
return svg
}