2. Program to Demonstrate SVG (Scalable Vector Graphics) Eclipse.
<!DOCTYPE
html>
<html>
<head>
<title>SVG</title>
<meta
charset
= "utf-8" />
</head>
<body>
<h2
align
= "center">HTML5 SVG Ellipse</h2>
<svg
id
= "svgelem" height = "200">
<ellipse
cx
= "100"
cy
= "50"
rx
= "100"
ry
= "50"
fill
= "red"
/>
</svg>
</body>
</html>
0 Comments