Copy XML, self-written XSL and CSS
<? XML version = "1.0"?>
<? XML-stylesheet type = "text/XSL" href = "order. XSL"?>
<Order>
<Account> 9900234 </account>
<Item id = "1">
<SKUs> 1234 </SKU>
<Priceper> 5.95 </priceper>
<Quantity> 100 </quantity>
<Subtotal> 595.00 </subtotal>
<Description> super widget clamp </description>
</Item>
<Item id = "2">
<SKUs> 6234 </SKU>
<Priceper> 22.00 </priceper>
<Quantity> 10 </quantity>
<Subtotal> 220.00 </subtotal>
<Description> mighty foobar flange </description>
</Item>
<Item id = "3">
<SKUs> 9982 </SKU>
<Priceper> 2.50 </priceper>
<Quantity> 1000 </quantity>
<Subtotal> 2500.00 </subtotal>
<Description> deluxe doohickie </description>
</Item>
<Item id = "4">
<SKUs> 3256 </SKU>
<Priceper> 389.00 </priceper>
<Quantity> 1 </quantity>
<Subtotal> 389.00 </subtotal>
<Description> muckalucket bucket </description>
</Item>
<Numberitems> 1111 </numberitems>
<Total> 3704.00 </total>
<Orderdate> 07/07/2002 </orderdate>
<Ordernumber> 8876 </ordernumber>
</Order>
XSL:
<? XML version = '1. 0'?>
<XSL: stylesheet xmlns: XSL = "http://www.w3.org/TR/WD-xsl">
<XSL: template match = "/">
<HTML>
<Body>
<Table border = "1">
<Tr class = "form-titlesecond">
<TH> SKU </Th>
<TH> priceper </Th>
<TH> quantity </Th>
<TH> description </Th>
</Tr>
<XSL: For-each select = "order/item">
<Tr class = ". form-cont1">
<TD> <XSL: value-of select = "SKU"/> </TD>
<TD> <XSL: value-of select = "priceper"/> </TD>
<TD> <XSL: value-of select = "quantity"/> </TD>
<TD> <XSL: value-of select = "Description"/> </TD>
</Tr>
</XSL: For-each>
</Table>
</Body>
</Html>
</XSL: Template>
</XSL: stylesheet>