Write Code for it, I have taken this question from brainly
Answers
<!DOCTYPE html>
<html>
<body>
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>
</body>
</html>
<head>
<title>SVG</title>
<meta charset="utf-8" />
</head>
<body>
<h2>HTML5 SVG Circle</h2>
<svg id="svgelem" height="200" >
<circle id="redcircle" cx="50" cy="50" r="50" fill="black" />
</svg><head>
<title>SVG</title>
<meta charset="utf-8" />
</head>
<body>
<h2>HTML5 SVG Circle</h2>
<svg id="svgelem" height="200" >
<circle id="redcircle" cx="50" cy="50" r="50" fill="red" />
</svg><head>
<title>SVG</title>
<meta charset="utf-8" />
</head>
<body>
<h2>HTML5 SVG Circle</h2>
<svg id="svgelem" height="100" >
<circle id="redcircle" cx="50" cy="50" r="50" fill="green" />
</svg><head>
<title>SVG</title>
<meta charset="utf-8" />
</head>
<body>
<h2>HTML5 SVG Circle</h2>
<svg id="svgelem" height="200" >
<circle id="redcircle" cx="50" cy="50" r="50" fill="purple" />
</svg>