XSLT StyleSheet XML

File: Data.xml


         xsi:noNamespaceSchemaLocation="Schema.xsd">
  
    name 1
    0001
    description 1
    14.55
    Chicago
    2345
  
  
    name 1
    0002
    description 2
    9.06
    SanDiego
    13
  
  
    name 1
    0003
    description 3
    12.34
    Over-seas
    40325
  

File: Transform.xslt


 

  
    
     Inventory List 
        
        @page {
     margin-left : 15px;
     margin-bottom : 30px;
    margin-right : 15px;
    }
        h1 {
    font-family : Verdana, Arial, sans-serif ;
    font-size : larger;
    background-color : yellow;
    border-bottom-style : double;
    color : Black;
    }
  
  
  
                
                


       
    


    

      Item Number: 
      Item Description: 
      Item Cost: $
      Item Location:   
      Num. In Stock: 
                

                
  
  
  

Output:
 Inventory List 
        @page {
     margin-left : 15px;
     margin-bottom : 30px;
    margin-right : 15px;
    }
        h1 {
    font-family : Verdana, Arial, sans-serif ;
    font-size : larger;
    background-color : yellow;
    border-bottom-style : double;
    color : Black;
    }
  

name 1


      Item Number: 0001
      Item Description: description 1
      Item Cost: $14.55
      Item Location: Chicago
  
      Num. In Stock: 2345

name 1


      Item Number: 0002
      Item Description: description 2
      Item Cost: $9.06
      Item Location: SanDiego
  
      Num. In Stock: 13

name 1


      Item Number: 0003
      Item Description: description 3
      Item Cost: $12.34
      Item Location: Over-seas
  
      Num. In Stock: 40325