<?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>Playing with Bibliographies</title>       <link rel="stylesheet" href="bib.css" />    </head>             <body>      <h1>Web Sites</h1>      <xsl:for-each select="bib/www">      <div>      	<br />        <span class="author">Author:<xsl:value-of select="author" /></span><br />        <span class="title">Title:<xsl:value-of select="title" /></span><br />        <span class="url">URL:        	<xsl:element name="a">        		<xsl:attribute name="href">        			<xsl:value-of select="url" />        		</xsl:attribute>        			<xsl:value-of select="url" />        	</xsl:element>        </span><br /><br />      </div>      </xsl:for-each>    </body>  </html></xsl:template></xsl:stylesheet>