<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
  <html>
  <body>
    <h2>Office</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Office</th>
        <th>City</th>
        <th>Zipcode</th>
      </tr>
	<xsl:for-each select="OFFICE/OFFICE_LOC">
      <tr>
	<td> <xsl:value-of select="HOME"/> </td>
        <td> <xsl:value-of select="CITY"/> </td>
        <td> <xsl:value-of select="ZIP"/> </td>
      </tr>
	</xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>


