<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="uri:xsl">
  <xsl:template match="/">
    <HTML>
      <BODY>
        <TABLE BORDER="1">
          <TR STYLE="font-weight:bold; color:red">
            <TD>Owner Name</TD>
            <TD>City</TD>
            <TD>State</TD>
          </TR>
          <xsl:for-each select="AIRCRAFTDATA/OWNER">
            <TR>
              <xsl:apply-templates select="NAME"/>
              <xsl:apply-templates select="CITY"/>
              <xsl:apply-templates select="STATE"/>
            </TR>
          </xsl:for-each>
        </TABLE>
      </BODY>
    </HTML>
  </xsl:template>
  <xsl:template match="NAME">
    <TD STYLE="color:blue"><xsl:value-of /></TD>
  </xsl:template>
  <xsl:template match="CITY">
    <TD><xsl:value-of /></TD>
  </xsl:template>
  <xsl:template match="STATE">
    <TD><xsl:value-of /></TD>
  </xsl:template>

</xsl:stylesheet>
