<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
   PUBLIC "-//W3C//DTD SVG 1.0/EN" 
"http://www.w3org/TR/2001/REC-20010904/DTD/svg1-.dtd">
   <html xmlns:svg="http://www.w3.org/2000/svg"
         xmlns="http://www.w3.org/1999/xhtml">

    <head>
       <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
       <title>Billing Summary</title>
    </head>
    <body>
       <div style="left:5px; width:600px;">
          <h1>BILLING ACTIVITY</h1>
          <p>From January 1, 2006
             to December 31 2006
          </p>
          <table border="1">
             <tr>
                <th>Month</th>
                <th>Retail</th>
                <th>Entertainment</th>
                <th>Travel</th>
             </tr>
             <tr>
                <td>January</td>
                <td>321.15</td>
                <td>75.34</td>
                <td>322.15</td>
             </tr>
             <tr>
                <td>February</td>
                <td>111.15</td>
                <td>85.34</td>
                <td>100.15</td>
             </tr>
          </table>
       </div>
       <div class="graphContainer"
            style="width:400px; height:200px; padding:1px;">
          <svg:svg version="1.1" height="198" width="398">
             <svg:rect x="0" y="0" height="198" width="398" 
fill="#f0f000"></svg:rect>

             <svg:g transform="translate(20,178)  scale(1,-1)">
                <svg:text font-size="30px" stroke-width="1" stroke="red" 
fill="black"  y="80" x="40">FILL TEST</svg:text>
                <svg:line x1="0" y1="0" x2="0" y2="178" 
class="graphAxis"></svg:line>
                <svg:line x1="0" y1="0" x2="378" y2="0" 
class="graphAxis"></svg:line>

                <svg:g transform="scale(1,-1)"   >
                   <svg:text font-size="30px" stroke-width="1" 
stroke="red" fill="black"  y="0" x="0">123456</svg:text>
                </svg:g>

                <svg:g transform="scale(1,-1)" font-size="30px" 
fill="black"  >
                   <svg:text font-size="30px" y="0" x="100">789</svg:text>
                </svg:g>


             </svg:g>
          </svg:svg>
       </div>
    </body>
</html>

