<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">

<xsl:template match="employees">
<html xmlns="http://www.w3.org/1999/xhtml">
<head> <title>XSLT Combining Example in XSLT Tutorial</title> </head>
<body>
  <h1>
    <a href="index.php"><font color="0066CC">
    Example of XSLT Combining at Global Guide Line XSLT Tutorial
    </font></a>
  </h1>
  <h2>Employees at Global Guide Line</h2>
  <ul> 
    <xsl:apply-templates select="employee">
      <xsl:sort select="employee_name" />
    </xsl:apply-templates>
  </ul>
</body>
</html> 
</xsl:template>
<xsl:include href="XSLT_Combining_with_XSL_Include.xsl"/>
</xsl:stylesheet>
