<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
  <rect x="10" y="10" width="100" height="100" fill="blue" />
  <circle cx="150" cy="60" r="40" fill="green" stroke="black" stroke-width="3" />
  <ellipse cx="100" cy="150" rx="80" ry="30" fill="orange" />
  <line x1="0" y1="0" x2="200" y2="200" stroke="red" stroke-width="2" />
  <text x="20" y="190" font-family="Verdana" font-size="24" fill="purple">SVG Example</text>
</svg>
