1:<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 2:<xsl:output method="text"/> 3: 4:<xsl:template match="/"> 5: <xsl:apply-templates /> 6:</xsl:template> 7: 8:<xsl:template match="student_list"> 9: Student Directory for example.edu 10: <xsl:apply-templates /> 11:</xsl:template> 12: 13:<xsl:template match="name"> 14: Name: <xsl:apply-templates /> 15:</xsl:template> 16: 17:<xsl:template match="major"> 18: Major: <xsl:apply-templates /> 19:</xsl:template> 20: 21:<xsl:template match="phone"> 22: Phone: <xsl:apply-templates /> 23:</xsl:template> 24: 25:<xsl:template match="email"> 26: Email: <xsl:apply-templates /> 27:</xsl:template> 28: 29:</xsl:stylesheet>