<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>Salsa Notes in SVG</title>
    <link rel="stylesheet" type="text/css" href="salsa.css" />
  </head>
  <body>
    <h1>Salsa Notes in SVG</h1>
    <p>$Id$</p>

    <svg xmlns="http://www.w3.org/2000/svg" width="300" height="200" xmlns:xlink="http://www.w3.org/1999/xlink">
      <defs>
        <symbol id="boy" viewBox="0 0 80 45">
          <rect x="2" y="2" width="76" height="41" rx="4" ry="4" class="boy" />
          <line x1="2" y1="2" x2="40" y2="40" class="boy" />
          <line x1="76" y1="2" x2="40" y2="40" class="boy" />
        </symbol>
        <symbol id="girl" viewBox="0 0 80 45">
          <ellipse cx="40" cy="22" rx="38" ry="20" class="girl" />
          <line x1="9" y1="9" x2="40" y2="42" class="girl" />
          <line x1="71" y1="9" x2="40" y2="42" class="girl" />
        </symbol>
      </defs>

      <use xlink:href="#boy" x="100" y="130" width="80" height="48" transform="rotate(180, 140, 154)" />
      <use x="100" y="30" width="80" height="48" xlink:href="#girl" />
    </svg>

  </body>
</html>
