<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" 
  "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg">
  
  <desc>Basic shapes</desc>
  
  <g>
    <circle cx="50" cy="50" r="25" />
    <ellipse cx="75" cy="125" rx="50" ry="25" />

    <rect x="155" y="5" width="75" height="100"/>
    <rect x="250" y="5" width="75" height="100" rx="30" ry="20" />

    <line x1="0" y1="150" x2="400" y2="150" 
                         stroke-width="2" stroke="blue"/>
    
    <polyline points="50,175 150,175 150,125 250,200" />
    <polygon points="350,75 379,175 355,175 355,200 345,200 
                                      345,175 321,175" />

    <rect x="0" y="0" width="400" height="200" 
            fill="none" stroke="red" stroke-width="3" />
  </g>
</svg>


