html`<svg width="700" height="700">
<rect x="100" y="100" width="500" height="500" stroke="black" stroke-width="5" fill="transparent"/>
<circle cx="250" cy="200" r="50" fill="grey"/>
<circle cx="450" cy="200" r="50" fill="grey"/>
<ellipse cx="350" cy="320" rx="150" ry="130" fill="grey"/>
<ellipse cx="320" cy="320" rx="10" ry="30" fill="black"/>
<ellipse cx="380" cy="320" rx="10" ry="30" fill="black"/>
<line x1="200" y1="400" x2="300" y2="380" stroke="black" stroke-width="8"/>
<line x1="200" y1="420" x2="300" y2="390" stroke="black" stroke-width="8"/>
<line x1="500" y1="400" x2="400" y2="380" stroke="black" stroke-width="8"/>
<line x1="500" y1="420" x2="400" y2="390" stroke="black" stroke-width="8"/>
<circle cx="350" cy="420" r="30" stroke="white" stroke-width="5" fill="pink"/>
<!-- Here the slider is used -->
<text x=${value} y="500" font-family="sans-serif" font-size="30" fill="black">Hello World!</text>
</svg>`