Summary -
In this topic, we described about the SVG Stroke with detailed example.
The stroke property includes a stoke color(outline color). We can use the stroke-width property to create the width of the stroke.
Example -
Below example describes about how to draw stroke.
<html>
<head>
<title>SVG Stroke</title>
</head>
<body>
<svg width="200" height="200"
stroke-width="10"
fill = "white" stroke="violet" >
<circle cx="80" cy="80" r="60"/>
</svg>
</body>
</html>