Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <svg width="300" height="150" xmlns="http://www.w3.org/2000/svg"> <!-- Basic text --> <text x="20" y="50" font-family="sans-serif" font-size="28" fill="steelblue"> Hello, SVG! </text> <!-- Text with tspan for multi-line effect --> <text x="20" y="90" font-family="sans-serif" font-size="16" fill="#333"> <tspan x="20" dy="0">First line of text,</tspan> <tspan x="20" dy="22">second line of text.</tspan> </text> </svg>