XSLT StyleSheet XML

File: Transform.xslt

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  
  
     An example of if-then-else logic in XSLT 1.0:
       If $x is larger than 10, print 'Big', 
         otherwise print 'Little'
                
    
      
        Big
      
      
        Little
      

    

    
  

Output:
An example of if-then-else logic in XSLT 1.0:
  If $x is larger than 10, print 'Big', 
    otherwise print 'Little'
           Little