- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML SVG (Scalable Vector Graphics)
SVG (Scalable Vector Graphics) is an XML-based vector image format used to create graphics that scale seamlessly on any screen size without losing quality. It is widely used for icons, charts, and complex illustrations in web development.
Basic Syntax
SVG elements are defined within the <svg>
tag.
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
<circle cx="100" cy="100" r="50" fill="blue" />
</svg>
Output: A blue circle with a radius of 50 pixels is drawn at the center of a 200x200 canvas.
Common SVG Shapes
1. Rectangle (<rect>
)
Defines a rectangle with optional rounded corners.
<svg width="200" height="200">
<rect x="10" y="10" width="100" height="50" fill="green" rx="10" ry="10" />
</svg>
x
,y
: Top-left corner of the rectangle.rx
,ry
: Horizontal and vertical corner radius.
2. Circle (<circle>
)
Defines a circle with a center and radius.
<svg width="200" height="200">
<circle cx="100" cy="100" r="50" fill="red" />
</svg>
cx
,cy
: Center coordinates.r
: Radius of the circle.
3. Ellipse (<ellipse>
)
Defines an ellipse with horizontal and vertical radii.
<svg width="200" height="200">
<ellipse cx="100" cy="100" rx="80" ry="40" fill="purple" />
</svg>
rx
,ry
: Horizontal and vertical radii.
4. Line (<line>
)
Defines a straight line.
<svg width="200" height="200">
<line x1="10" y1="10" x2="190" y2="190" stroke="black" stroke-width="2" />
</svg>
x1
,y1
,x2
,y2
: Starting and ending points.
5. Polygon (<polygon>
)
Defines a closed shape with multiple points.
<svg width="200" height="200">
<polygon points="50,10 90,180 10,80 190,80 110,180" fill="orange" />
</svg>
points
: List of coordinates for vertices.
6. Polyline (<polyline>
)
Defines an open shape with multiple points.
<svg width="200" height="200">
<polyline points="10,10 50,100 90,10" stroke="blue" fill="none" stroke-width="2" />
</svg>
7. Path (<path>
)
Defines complex shapes with commands.
<svg width="200" height="200">
<path d="M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80" fill="none" stroke="brown" stroke-width="2" />
</svg>
M
: Move to.C
: Cubic Bezier curve.S
: Smooth curve.
Adding Text
Example: Text in SVG
<svg width="200" height="100">
<text x="10" y="50" font-size="24" fill="blue">Hello, SVG!</text>
</svg>
x
,y
: Position of the text.font-size
: Size of the text.
Styling SVG
SVG elements can be styled using CSS.
<svg width="200" height="200" class="styled-svg">
<circle cx="100" cy="100" r="50" class="circle" />
</svg>
<style>
.styled-svg {
background-color: lightgray;
}
.circle {
fill: yellow;
stroke: black;
stroke-width: 3;
}
</style>
Animations in SVG
Example: Animated Circle
<svg width="200" height="200">
<circle cx="100" cy="100" r="50" fill="red">
<animate attributeName="r" from="50" to="100" dur="2s" repeatCount="indefinite" />
</circle>
</svg>
animate
: Adds animation to an attribute liker
(radius).dur
: Duration of the animation.repeatCount
: Specifies the repetition of the animation.
Advantages of SVG
- Scalability: Does not lose quality at any resolution.
- Interactivity: Supports JavaScript and CSS styling.
- Accessibility: Readable and editable as plain text.
- Lightweight: Smaller file size for simple graphics compared to raster images.
Summary
SVG is a versatile tool for creating scalable, interactive graphics for web applications. Using elements like <circle>
, <rect>
, and <path>
, combined with CSS and JavaScript, developers can build rich visual content efficiently.