<?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 Transformation Example into HTML</title> </head>
<body>
  <h1>
    <a href="index.php"><font color="0066CC">
      Example of XSLT Transformation 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:template match="employee">
  <li>
    <xsl:value-of select="employee_id"/>, 
    <xsl:value-of select="employee_name"/> 
  </li> 
</xsl:template>
</xsl:stylesheet>