Make a star shape with HTML5 SVG


Here is the HTML5 version of an SVG example that would draw a star using the <polygon> tag.

<html>
   <head>
      <style>
         #svgelem{
            position: relative;
            left: 50%;
            -webkit-transform: translateX(-40%);
            -ms-transform: translateX(-40%);
            transform: translateX(-40%);
         }
      </style>
      <title>SVG</title>
      <meta charset="utf-8" />
   </head>
   <body>
      <h2 align = "center">HTML5 SVG Star</h2>
      <svg id = "svgelem" height = "200" xmlns = "http://www.w3.org/2000/svg">
      <polygon points = "100,10 40,180 190,60 10,60 160,180" fill = "red"/>
      </svg>
   </body>
</html>

Output

Lakshmi Srinivas
Lakshmi Srinivas

Programmer / Analyst / Technician

Updated on: 16-Dec-2021

806 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements