<?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <head><title>Making XML links</title><base target="_blank"/></head>
  <body>
    <h2>Making XML links</h2>
    <table border="1">
    <tr bgcolor="#9acd32">
      <th align="left">Image with link</th>
      <th align="left">Image without link</th>
      <th align="left">Links</th>
      <th align="left">Description</th>
    </tr>
    <xsl:for-each select="guitarTypes/type">
    <tr>
      <td><a><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute><xsl:attribute name="title"><xsl:value-of select="picture"/></xsl:attribute><img border="0"><xsl:attribute name="src"><xsl:value-of select="image"/></xsl:attribute></img></a></td>
      <td><img border="0" alt="image without link"><xsl:attribute name="src"><xsl:value-of select="image"/></xsl:attribute></img></td>
      <td><a><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute><xsl:value-of select="picture"/></a></td>
      <td><xsl:value-of select="description"/></td>
    </tr>
    </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>