3. Program to Demonstrate SVG (Scalable Vector Graphics) Star.
<html>
<head>
<title>SVG</title>
<meta
charset
= "utf-8" />
</head>
<body>
<h2
align
= "center">HTML5 SVG Star</h2>
<svg
id
= "svgelem" height = "200" svg">
<polygon
points
= "100,10 40,180 190,60 10,60
160,180" fill = "red"/>
</svg>
</body>
</html>
0 Comments