1.

How To Draw A Free Flow Path In Svg?

Answer»

'path' tag of SVG is used to draw a free flow path. Following is the commonly used attribute − d − path data,USUALLY a set of commands like moveto, lineto etc.

Example −

<path d = "M 100 100 L 300 100 L 200 300 z" 
STROKE = "BLACK
stroke-width = "3" 
fill = "rgb(121,0,121)">

'path' tag of SVG is used to draw a free flow path. Following is the commonly used attribute − d − path data,usually a set of commands like moveto, lineto etc.

Example −

<path d = "M 100 100 L 300 100 L 200 300 z" 
stroke = "black" 
stroke-width = "3" 
fill = "rgb(121,0,121)">



Discussion

No Comment Found