Category: Graphics

0

Chapter 11: SVG path

1. What is SVG <path> Exactly? The <path> element is the most powerful SVG shape. It lets you draw anything by giving a series of instructions to an imaginary “pen”: Move the pen without...

0

Chapter 12: SVG text and tspan

SVG Text and <tspan>! 😊 Your favorite patient teacher from Hyderabad is back, explaining everything super slowly, in simple everyday English, with lots of copy-paste examples you can try right now in VS Code...

0

Chapter 13: SVG textPath

SVG textPath is a special child element that lives inside <text>. It lets you make text follow the shape of a <path> (the powerful d-attribute path we learned earlier). This is how you get cool...

0

Chapter 14: SVG Links

SVG Links means adding clickable hyperlinks inside your SVG graphics. You can make: A circle, rectangle, path, icon, or text clickable When user clicks → goes to another page, downloads file, opens email, jumps...

0

Chapter 15: SVG image

SVG Image (the <image> tag) means embedding a raster picture (like JPG, PNG, or even another SVG file) inside your SVG document. It’s like putting a photo or logo inside your vector drawing so...

0

Chapter 16: SVG marker

SVG Marker means using the <marker> element to create small reusable graphics (like arrowheads, dots, circles, diamonds, custom symbols) that automatically attach to the start, middle, or end of lines, paths, polylines, or polygons....

0

Chapter 17: SVG Fill

SVG Fill Attributes basically means all the ways you can control the color / pattern / gradient / transparency / rule that fills the inside of SVG shapes (rectangle, circle, ellipse, polygon, closed path, text,...

0

Chapter 18: SVG Stroke

SVG Stroke means everything related to the border / outline / edge of your SVG shapes (line, rectangle, circle, ellipse, polygon, polyline, path, text, etc.). Think of it this way: fill = inside color...

0

Chapter 19: SVG Filters Introduction

SVG Filters are one of the most powerful and beautiful features in SVG. They let you apply photoshop-like effects (blur, shadow, brightness, contrast, color changes, turbulence, waves, glow, emboss, etc.) directly inside SVG code...

0

Chapter 20: SVG Blur Effects

SVG Blur Effects are one of the most popular and beginner-friendly uses of SVG <filter>. They make any shape, text, image, icon, button, or group look soft, dreamy, glowing, out-of-focus, or professional-shadowed — exactly...