Slide Number: 4
background
ECC Logo What Does XML Look Like

 

<?xml version="1.0"?>
<?xml-stylesheet href="invoice.xsl" type="text/xsl"?>
<invoice unique-id="po1"> 
  <header>  
    <date>September 28, 1998</date> 
    <invoice-num>346</invoice-num> 
 <contact-info>
    <company>
      <contact> 
        <name>Acme Gadgets</name> 
        <address> 
          <street>123 Any Street</street> 
          <city>Anycity</city> 
          <state>Nebraska</state> 
          <zip>20098</zip> 
        </address> 
      <telephone>222-555-1212</telephone><fax>222-555-1213</fax></contact>
    </company> 
    <purchaser> 
      <contact> 
        <name>Electronic Commerce Connection, Inc.</name>
        <attention>
          <name>Betty Harvey</name>
          <telephone>301-540-8251</telephone>
          <email href="mailto:harvey@eccnet.com">harvey@eccnet.com</email>
        </attention> 
        <address> 
          <street>13017 Wisteria Drive</street> 
          <pobox>333</pobox> 
          <city>Germantown</city> 
          <state>MD</state> 
          <zip>20874</zip> 
        </address>
        <telephone>301-540-8251</telephone>
        <fax>301-428-4268</fax> 
        <email href="mailto:info@eccnet.com">info@eccnet.com</email>
      </contact> 
    </purchaser>
     </contact-info> 
  </header> 
  <detail> 
<inv-item>
<qty>1</qty>
   <item unique-id="item1">
   <item-name>Surprise Sounds Kitchen 
   </item-name>
   <description>
      <picture src="graphics/fp1.gif" alt="Surprise Sounds Kitchen"/>
      <para>Although this plastic mini-kitchen is 
      <i>Sesame Street-themed</i>, toddlers don't have to be familiar 
                     with Big Bird and company to enjoy the ingeniously 
                     constructed Surprise Sounds Kitchen. The 1-foot-high 
                     neatly organized unit includes a bright yellow sink, a 
                     blue burner, three pots that hang on the side, salt 
                     shakers that sit on their own shelf, a couple of utensils, 
                     and even a cell phone. Added sensory pleasure is
                     provided by the "Surprise Sounds" for which the toy is 
                     named: the salt shakers rattle like maracas, the toast 
                     pops pleasantly, the pans sizzle, the kitchen controls 
                     flash, and, yes, the phone rings. Toddlers will love 
                     that it's adorned with dozens of Bert, Ernie, and Elmo
                     decals. Bert, Ernie, and Elmo even say things once in 
                     a while. Some sounds are battery-powered (by three AA 
                     batteries), some are not.
                     This is toy is durable, of broad appeal, and the 
                     assembly is so simple the kids could practically do it 
                     themselves. (Ages 1 to 4) 
                     <i>&#8212;Elisa Murray</i>
        </para>
   </description>
   <price>19.99
   </price>
   <stock-no>B00000IT9R 
   </stock-no>
   <supplier-no>FP1234
   </supplier-no>
   <gsa-info>
   <stock-no>gsa-fp1234
   </stock-no>
   <price>19.00
   </price>
   </gsa-info>
   </item>
<amount>19.95</amount>
</inv-item>
<inv-item>
<qty>1</qty>
   <item unique-id="item2">
   <item-name>Surprise Sounds Play Store 
   </item-name>
   <description><picture src="graphics/fp2.gif" alt="Surprise Sounds Play Store"/>
   <para>Decorated with the face and hands of <i>Sesame Street's Elmo
         </i> character, this sturdy, toddler-sized pretend radio with fake 
         AM/FM  gauge, stubby antenna, and three colored buttons randomly 
         plays 12 one-verse segments of familiar children's songs ("Happy 
         Birthday," "London Bridge," "Darling Clementine," "Row Your Boat," 
         "Frere Jacques"). Easy to play and small enough to be attached to 
         a stroller, this is a great soother for fussy Elmo fans. Like all 
         noise-making items with buttons, this will endlessly entertain small 
         children and try parents' patience (there is no volume adjustment). 
         <i>S.J. Kurtz </i>
   </para>
   </description>
   <price>6.99
   </price>
   <stock-no>B00000ITD6
   </stock-no>
   <supplier-no>fp3456
   </supplier-no>
   <gsa-info>
   <stock-no>GSA-B00000ITD6
   </stock-no>
   <price>4.99
   </price>
   </gsa-info>
   </item>
<amount>29.95</amount>
</inv-item>
  </detail> 
  <summary> 
    <total><?xm-replace_text {total}?></total> 
  </summary>
</invoice> 
-