Multiple SVG elements can be combined to create structured visuals (like simple data displays).

Example:

<svg width="250" height="120" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="230" height="100" fill="lightblue" stroke="black"/>
<text x="20" y="40">Name: Alice</text>
<text x="20" y="65">Age: 30</text>
<text x="20" y="90">City: London</text>
</svg>