{
const canvas = html`<canvas width = 500 height = 500 style = "border:1px solid black;"/>`
const ctx = canvas.getContext("2d")
ctx.fillStyle = "steelblue"
ctx.strokeStyle = "red"
ctx.beginPath()
ctx.arc(250,250,20,0,Math.PI)
ctx.fill()
ctx.stroke()
ctx.closePath()
return canvas
}