- object.svg
- style.css
SVG
<svg width="200" height="200">
<circle r="70" cx="100" cy="100" fill="none" stroke="lightgrey" stroke-width="55"></circle>
</svg>
CSS
svg {
border: 1px solid #dddddd;
}
You’ve gone to a different page
Goalscompleted
0
- In SVG, after the first circle, add a second one with a radius of
70
and center coordinates along both axes of100
. - Clear the circle fill and set the stroke color to
tomato
. - And then set the stroke width to
50
.
Comments