Computer Science, asked by nimki87, 1 year ago

Write Code for it, I have taken this question from brainly ​

Attachments:

Answers

Answered by yashgandhi74
5

<!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>

Answered by Rememberful
3

<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>

Similar questions