When transforming XML to HTML you often have to create links on your page. Use this syntax to simply this task.
<xml>
<contact name="Kris" url="kris@somewhere.com"/>
</xml>
Long way:
<a><attribute name="href"><xsl:value-of
select="@url"/></attribute><xsl:value-of select="@name"/></a>
Short way:
<a href="{@url}"><xsl:value-of select="@name"></a>