<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
    <head>
        <title>List Of Orders in the stores databases</title>
    </head>
    <body>
        <table border="1">
            <tr>
               <th>Order Num</th>
               <th>Order Date</th>
               <th>Customer number</th>
               <th>Shipping instruction</th>
               <th>Backlog</th> 
               <th>Purchase Order</th> 
               <th>Ship Date</th>
               <th>Ship Weight</th>
               <th>Ship Charge</th>
               <th>Paid Date</th>
            </tr>
         <xsl:for-each select="*">
         <xsl:for-each select="row">
         <tr>
                      <td>
                          <xsl:value-of select="order_num"/>
                      </td>
                      <td>
                          <xsl:value-of select="order_date"/>
                      </td>
                      <td>
                          <xsl:value-of select="customer_num"/>
                      </td>
                      <td>
                          <xsl:value-of select="ship_instruct"/>
                      </td>
                      <td>
                          <xsl:value-of select="backlog"/>
                      </td>
                      <td>
                          <xsl:value-of select="po_num"/>
                      </td>
                      <td>
                          <xsl:value-of select="ship_date"/>
                      </td>
                      <td>
                          <xsl:value-of select="ship_weight"/>
                      </td>
                      <td>
                          <xsl:value-of select="ship_charge"/>
                      </td>
                      <td>
                          <xsl:value-of select="paid_date"/>
                      </td>
   
         </tr>
         </xsl:for-each>
         </xsl:for-each>
         </table>
    </body>
</html>
</xsl:template>
</xsl:stylesheet>