in HTML by (32.2k points)
What is SVG?

1 Answer

0 votes
by (23.9k points)
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 Sep 6 in HTML by Robindeniel (20.8k points)
0 votes
0 votes
asked Sep 6 in HTML by Robindeniel (20.8k points)
0 votes
asked Jan 29, 2021 in HTML by rajeshsharma (23.9k points)
0 votes
asked Jan 29, 2021 in HTML by rajeshsharma (23.9k points)
...