Chapter 3 — CSV Advanced Basics
SVG can display text using the <text> element with position and styling.
Example:
<svg width="200" height="80" xmlns="http://www.w3.org/2000/svg">
<text x="10" y="40" font-size="20">Hello SVG</text>
</svg>