XSLT StyleSheet XML

File: Data.xml


  title 1
  item 1
  item 2
  item 3
  item 4
  item 5
  item 6
  item 7

File: Transform.xslt

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      method="xhtml" 
    encoding="ISO-8859-3"
    doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
  
    
      
        <xsl:value-of select="/list/title"/>
      
      
        


        


          
            
            
            
          
        


      
    
  

Output:

  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

   
      title 1
   
   
      

title 1


      

1. item 1
         

2. item 2
         

3. item 3
         

4. item 4
         

5. item 5
         

6. item 6
         

7. item 7