SVG Recipe

Document Structure / use

Last modified:

defs


<svg width="200" height="124" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <rect id="d_rect1" width="85" height="47"/>
  </defs>
  <use x="10"  y="10" fill="#f5f5f5" xlink:href="#d_rect1"/>
  <use x="10"  y="67" fill="#f5f5f5" xlink:href="#d_rect1"/>
  <use x="105" y="10" fill="#f5f5f5" xlink:href="#d_rect1"/>
  <use x="105" y="67" fill="#f5f5f5" xlink:href="#d_rect1"/>
</svg>