0 votes
in HTML by
What is SVG?

1 Answer

0 votes
by
HTML SVG is used to describe the two-dimensional vector and vector/raster graphics. SVG images and their behaviors are defined in XML text files. So as XML files, you can create and edit an SVG image with the text editor. It is mostly used for vector type diagrams like pie charts, 2-Dimensional graphs in an X, Y coordinate system.

<svg width="100" height="100">    

 <circle cx="50" cy="50" r="40" stroke="yellow" stroke-width="4" fill="red" />    

</svg>

Related questions

0 votes
asked Feb 4 in Image Classification by SakshiSharma
0 votes
asked Feb 11, 2020 in HTML by rahuljain1
...