The xsl:apply-templates Element


     <?xml version="1.0"?> 
     <xsl:stylesheet version="1.0"
                     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:template match="/">
             <HTML>
             <HEAD>
                 <TITLE>Name of students</TITLE>
             </HEAD>
             <BODY>
                 <xsl:apply-templates/>
             </BODY>
             </HTML>
         </xsl:template>

         <xsl:template match="course">
             <xsl:apply-templates select="student"/>
         </xsl:template>

         <xsl:template match="student">
             <P>
	         Student Data
             </P>
         </xsl:template>
     </xsl:stylesheet>