<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8"/>
<xsl:template match="/">
<html>
  <head><title>Employees at Global Guide Line</title>
  </head>
  <body>
  <h1>
    <a href="index.php"><font color="0066CC">
      Example of XSLT Attributes at Global Guide Line XSLT Tutorial
    </font></a>
  </h1>
    <table width="100%" border="1">
    <THEAD>
    <TR>
      <TD width="50%"><B>Employee ID</B></TD>
      <TD width="50%"><B>Employee Name</B></TD>
    </TR>
    </THEAD> 
    <TBODY>
      <xsl:for-each select="employees/employee">
    <TR> 
      <TD width="50%"><xsl:value-of select="@employee_id" /></TD> 
      <TD width="50%"><xsl:value-of select="@employee_name" /></TD>
    </TR>
    </xsl:for-each>
    </TBODY>
  </table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
