IT/html

html5 SVG Star

조원태 2017. 1. 26. 00:09
반응형

SVG Star

Example


<svg width="300" height="200">

  <polygon points="100,10 40,198 190,78 10,78 160,198"

  style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;" />

</svg>



<!DOCTYPE html>

<html>

<body>


<svg width="300" height="200">

  <polygon points="100,10 40,198 190,78 10,78 160,198"

  style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;" />

Sorry, your browser does not support inline SVG.

</svg>

 

</body>

</html>



반응형

'IT > html' 카테고리의 다른 글

html5 SVG와 캔버스의 차이점  (0) 2017.01.27
html5 SVG Logo  (0) 2017.01.27
html5 SVG Rounded Rectangle  (0) 2017.01.26
html5 SVG Rectangle  (0) 2017.01.26
html5 SVG Circle  (0) 2017.01.24