<?xml version="1.0" encoding="utf-8"?>
<!--Convert the intermedia XML into XFN. You may want to change the HTML style.-->
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" omit-xml-declaration="yes" encoding="UTF-8" />

  <xsl:template match="/">
    <html>
      <body>
        <p/>
        <xsl:for-each select="Contacts/Contact">

          <a href="{URL}" rel="{Rel}">
            <xsl:value-of select="Name"/>
          </a>
          <p/>

        </xsl:for-each>
        <p/>
      </body>
    </html>
  </xsl:template>

</xsl:stylesheet>

