<?xml version="1.0"?>

<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400">
  <rect x="0" y="0" width="400" height="400" stroke="blue" stroke-width="1" fill="none"/>
  <g font-size="24pt">
    <text x="5" y="30">Some 24pt text</text>
    <text x="200" y="80" fill="red" text-anchor="middle">
      Some centered text
    </text>
    <text x="5" y="160" font-family="'Trebuchet MS'">
      Some
      <tspan font-weight="bold">varied</tspan>
      <tspan fill="blue" font-family="monospace" text-decoration="underline">formatting</tspan>
    </text>
    <text x="5" y="300" font-size="36pt" font-family="'Arial Unicode MS'">我真喜欢SVG！</text>
  </g>
</svg>

