SVG Tags With Code
SVG Tags With Code
Introduction to SVG
SVG (Scalable Vector Graphics) is an XML-based vector image format for two-dimensional
graphics. It supports interactive and animated graphics, and the images can be scaled to any size
SVG elements are used to draw various types of shapes, paths, text, and images.
1. <circle>
Example:
</svg>
2. <rect>
Example:
</svg>
3. <line>
Example:
</svg>
4. <ellipse>
Example:
</svg>
5. <polygon>
The <polygon> element is used to create a closed shape consisting of straight lines.
Example:
</svg>
6. <polyline>
Example:
</svg>
7. <path>
The <path> element is used to define complex shapes using a series of commands and points.
Example:
</svg>